[Scummvm-git-logs] scummvm master -> 28a3faa1785293df6aa94917c3e846e2f8e6258e

bonki bonki at users.noreply.github.com
Sat Apr 7 14:43:04 CEST 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
28a3faa178 AUDIO: Really fix constant type in Nuked OPL emulator


Commit: 28a3faa1785293df6aa94917c3e846e2f8e6258e
    https://github.com/scummvm/scummvm/commit/28a3faa1785293df6aa94917c3e846e2f8e6258e
Author: Adrian Frühwirth (bonki at users.noreply.github.com)
Date: 2018-04-07T14:41:06+02:00

Commit Message:
AUDIO: Really fix constant type in Nuked OPL emulator

Changed paths:
    audio/softsynth/opl/nuked.cpp


diff --git a/audio/softsynth/opl/nuked.cpp b/audio/softsynth/opl/nuked.cpp
index 811feab..9ee3ad3 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;





More information about the Scummvm-git-logs mailing list