mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
VITA: Prohibit exeuction of ParseClientCommand
This commit is contained in:
parent
c8f0ac928a
commit
e5a45a1b93
1 changed files with 3 additions and 1 deletions
|
@ -356,8 +356,10 @@ void Key_Console (int key)
|
|||
// for clientside cmds
|
||||
if (cls.state == ca_connected)
|
||||
{
|
||||
#ifndef VITA
|
||||
pr_global_struct->CMD_STRING = (key_lines[edit_line-1]+1 - pr_strings);
|
||||
PR_ExecuteProgram (pr_global_struct->ParseClientCommand);
|
||||
#endif // VITA
|
||||
}
|
||||
return;
|
||||
case K_TAB:
|
||||
|
@ -549,7 +551,7 @@ void Key_Console (int key)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
void Char_Console (int key)
|
||||
|
|
Loading…
Reference in a new issue