mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-18 23:57:32 +00:00
Silence unsued variables warnings.
svn-id: r41827
This commit is contained in:
parent
15b3946650
commit
6c049f6b29
@ -202,7 +202,7 @@ int16 Op_Random(void) {
|
||||
int16 Op_PlayFX(void) {
|
||||
int volume = popVar();
|
||||
int speed = popVar();
|
||||
int channelNum = popVar();
|
||||
/*int channelNum = */popVar();
|
||||
int sampleNum = popVar();
|
||||
|
||||
if ((sampleNum >= 0) && (sampleNum < NUM_FILE_ENTRIES) && (filesDatabase[sampleNum].subData.ptr)) {
|
||||
@ -219,7 +219,7 @@ int16 Op_PlayFX(void) {
|
||||
int16 Op_LoopFX(void) {
|
||||
int volume = popVar();
|
||||
int speed = popVar();
|
||||
int channelNum = popVar();
|
||||
/*int channelNum = */popVar();
|
||||
int sampleNum = popVar();
|
||||
|
||||
if ((sampleNum >= 0) && (sampleNum < NUM_FILE_ENTRIES) && (filesDatabase[sampleNum].subData.ptr)) {
|
||||
|
Loading…
Reference in New Issue
Block a user