diff options
author | Adrian Frühwirth | 2018-04-07 14:41:06 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-04-07 14:41:06 +0200 |
commit | 28a3faa1785293df6aa94917c3e846e2f8e6258e (patch) | |
tree | 738f92bef6e5bad9b6869527c5e1c63a2e9bff59 /audio | |
parent | 9b21e7507c90f3c9449ee23cb70af250ec8ba0da (diff) | |
download | scummvm-rg350-28a3faa1785293df6aa94917c3e846e2f8e6258e.tar.gz scummvm-rg350-28a3faa1785293df6aa94917c3e846e2f8e6258e.tar.bz2 scummvm-rg350-28a3faa1785293df6aa94917c3e846e2f8e6258e.zip |
AUDIO: Really fix constant type in Nuked OPL emulator
Diffstat (limited to 'audio')
-rw-r--r-- | audio/softsynth/opl/nuked.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/softsynth/opl/nuked.cpp b/audio/softsynth/opl/nuked.cpp index 811feabe2f..9ee3ad39f0 100644 --- a/audio/softsynth/opl/nuked.cpp +++ b/audio/softsynth/opl/nuked.cpp @@ -1154,7 +1154,7 @@ void OPL3_Generate(opl3_chip *chip, Bit16s *buf) if (chip->eg_timerrem || chip->eg_state) { - if (chip->eg_timer == 0xfffffffffUL) + if (chip->eg_timer == 0xfffffffffULL) { chip->eg_timer = 0; chip->eg_timerrem = 1; |