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:
hendricks266 2018-01-29 11:13:55 +00:00
parent 6470b51fb9
commit 969c9b77d6

View file

@ -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: