mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-16 01:11:44 +00:00
Turn get/setmusicposition into no-ops.
People were using these commands in spite of my explicit instructions not to. Now that music track is saved properly, no one has any excuse to continue using these. git-svn-id: https://svn.eduke32.com/eduke32@6621 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
6470b51fb9
commit
969c9b77d6
1 changed files with 2 additions and 4 deletions
|
@ -5056,12 +5056,10 @@ finish_qsprintf:
|
|||
|
||||
case CON_SETMUSICPOSITION:
|
||||
insptr++;
|
||||
S_SetMusicPosition(Gv_GetVarX(*insptr++));
|
||||
Gv_GetVarX(*(insptr++));
|
||||
continue;
|
||||
|
||||
case CON_GETMUSICPOSITION:
|
||||
insptr++;
|
||||
Gv_SetVarX(*insptr++, S_GetMusicPosition());
|
||||
insptr += 2;
|
||||
continue;
|
||||
|
||||
case CON_ACTIVATECHEAT:
|
||||
|
|
Loading…
Reference in a new issue