From e5a45a1b9327d779f9776f7a44383656f5916f64 Mon Sep 17 00:00:00 2001 From: cypress Date: Sun, 3 Dec 2023 14:45:10 -0500 Subject: [PATCH] VITA: Prohibit exeuction of ParseClientCommand --- source/keys.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/keys.c b/source/keys.c index 690f2f9..d522785 100644 --- a/source/keys.c +++ b/source/keys.c @@ -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)