Skip to content

Commit

Permalink
ADLMIDI: Fix one small MSVC Win64 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Wohlstand authored and coelckers committed Jun 22, 2018
1 parent ceec120 commit a5b4d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sound/adlmidi/adlmidi_opl3.cpp
Expand Up @@ -545,7 +545,7 @@ void OPL3::Reset(int emulator, unsigned long PCM_RATE, void *audioTickHandler)
#endif
}
cardsOP2[i].reset(chip);
chip->setChipId(i);
chip->setChipId((uint32_t)i);
chip->setRate((uint32_t)PCM_RATE);
if(runAtPcmRate)
chip->setRunningAtPcmRate(true);
Expand Down

0 comments on commit a5b4d9d

Please sign in to comment.