aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorAdrian Frühwirth2018-04-07 14:41:06 +0200
committerAdrian Frühwirth2018-04-07 14:41:06 +0200
commit28a3faa1785293df6aa94917c3e846e2f8e6258e (patch)
tree738f92bef6e5bad9b6869527c5e1c63a2e9bff59 /audio
parent9b21e7507c90f3c9449ee23cb70af250ec8ba0da (diff)
downloadscummvm-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.cpp2
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;