mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 14:41:42 +00:00
catch Cbuf_ExecuteText(EXEC_NOW,...) from the ui as that would crash the vm
This commit is contained in:
parent
6ddf70b0eb
commit
6c5211c0d3
1 changed files with 6 additions and 0 deletions
|
@ -801,6 +801,12 @@ intptr_t CL_UISystemCalls( intptr_t *args ) {
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
case UI_CMD_EXECUTETEXT:
|
case UI_CMD_EXECUTETEXT:
|
||||||
|
if(args[1] == 0
|
||||||
|
&& (!strncmp(VMA(2), "snd_restart", 11) || !strncmp(VMA(2), "vid_restart", 11)))
|
||||||
|
{
|
||||||
|
Com_Printf (S_COLOR_YELLOW "turning EXEC_NOW '%.11s' into EXEC_INSERT\n", (const char*)VMA(2));
|
||||||
|
args[1] = EXEC_INSERT;
|
||||||
|
}
|
||||||
Cbuf_ExecuteText( args[1], VMA(2) );
|
Cbuf_ExecuteText( args[1], VMA(2) );
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue