mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 09:20:51 +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:
|
case CON_SETMUSICPOSITION:
|
||||||
insptr++;
|
insptr++;
|
||||||
S_SetMusicPosition(Gv_GetVarX(*insptr++));
|
Gv_GetVarX(*(insptr++));
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
case CON_GETMUSICPOSITION:
|
case CON_GETMUSICPOSITION:
|
||||||
insptr++;
|
insptr += 2;
|
||||||
Gv_SetVarX(*insptr++, S_GetMusicPosition());
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
case CON_ACTIVATECHEAT:
|
case CON_ACTIVATECHEAT:
|
||||||
|
|
Loading…
Reference in a new issue