@@ -22,9 +22,9 @@ static AccessorTable AudioTable[] =
2222 // Undocumented intentionally
2323 { " AdjustSound" , 0 , ZTID_VOID, -1 , FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT, ZTID_FLOAT, ZTID_BOOL },{} },
2424 { " PlayOgg" , 0 , ZTID_BOOL, -1 , FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT, ZTID_FLOAT },{} },
25- { " GetOggPos " , 0 , ZTID_FLOAT, -1 , FL_DEPR, { ZTID_AUDIO },{} },
26- { " SetOggPos " , 0 , ZTID_VOID, -1 , FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT },{} },
27- { " SetOggSpeed " , 0 , ZTID_VOID, -1 , FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT },{} },
25+ { " GetMusicPos " , 0 , ZTID_FLOAT, -1 , FL_DEPR, { ZTID_AUDIO },{} },
26+ { " SetMusicPos " , 0 , ZTID_VOID, -1 , FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT },{} },
27+ { " SetMusicSpeed " , 0 , ZTID_VOID, -1 , FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT },{} },
2828 { " getVolume[]" , 0 , ZTID_FLOAT, AUDIOVOLUME, FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT },{} },
2929 { " setVolume[]" , 0 , ZTID_VOID, AUDIOVOLUME, FL_DEPR, { ZTID_AUDIO, ZTID_FLOAT, ZTID_FLOAT },{} },
3030
@@ -230,7 +230,7 @@ void AudioSymbols::generateCode()
230230 }
231231 // int32_t GetEnhancedMusicPos(game)
232232{
233- Function* function = getFunction (" GetOggPos " );
233+ Function* function = getFunction (" GetMusicPos " );
234234 int32_t label = function->getLabel ();
235235 vector<shared_ptr<Opcode>> code;
236236 // pop pointer, and ignore it
@@ -242,7 +242,7 @@ void AudioSymbols::generateCode()
242242}
243243 // void SetEnhancedMusicPos(game, int32_t)
244244 {
245- Function* function = getFunction (" SetOggPos " );
245+ Function* function = getFunction (" SetMusicPos " );
246246 int32_t label = function->getLabel ();
247247 vector<shared_ptr<Opcode>> code;
248248 // pop off the params
@@ -256,7 +256,7 @@ void AudioSymbols::generateCode()
256256 }
257257 // void SetEnhancedMusicSpeed(game, int32_t)
258258 {
259- Function* function = getFunction (" SetOggSpeed " );
259+ Function* function = getFunction (" SetMusicSpeed " );
260260 int32_t label = function->getLabel ();
261261 vector<shared_ptr<Opcode>> code;
262262 // pop off the params
0 commit comments