Overhaul to console structure, a bit

This commit is contained in:
iikorni
2026-08-30 00:50:23 -05:00
parent de75b014b3
commit 216dd1aecd
70 changed files with 2081 additions and 2260 deletions
+2 -2
View File
@@ -79,7 +79,7 @@ void KeyDown(kbutton_t *b) {
else if (!b->down[1])
b->down[1] = k;
else {
Con_Printf("Three keys down for a button!\n");
console::info("Three keys down for a button!\n");
return;
}
@@ -388,7 +388,7 @@ void CL_SendMove(const usercmd_t *cmd) {
return;
if (NET_SendUnreliableMessage(cls.netcon, &buf) == -1) {
Con_Printf("CL_SendMove: lost server connection\n");
console::info("CL_SendMove: lost server connection\n");
CL_Disconnect();
}
}