mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 06:41:59 +00:00
Fixes one of those CON commands nobody ever tried to use until now
git-svn-id: https://svn.eduke32.com/eduke32@42 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
7ffe1c887a
commit
7ad252b0c7
1 changed files with 3 additions and 1 deletions
|
@ -3926,8 +3926,10 @@ char parsecommand(void)
|
|||
if(!CheckEventSync(current_event))
|
||||
ReportError(WARNING_EVENTSYNC);
|
||||
transmultvars(4);
|
||||
if (tw == CON_MOVESPRITE)
|
||||
if (tw == CON_MOVESPRITE) {
|
||||
transvar();
|
||||
transvartype(GAMEVAR_FLAG_READONLY);
|
||||
}
|
||||
break;
|
||||
|
||||
case CON_MINITEXT:
|
||||
|
|
Loading…
Reference in a new issue