[Scummvm-git-logs] scummvm master -> b1d2d5619897bb00f6ec1a61962bd05dbd677b92

sev- sev at scummvm.org
Sat Apr 7 12:40:59 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:
b1d2d56198 AUDIO: Specify constant type in Nuked OPL emulator


Commit: b1d2d5619897bb00f6ec1a61962bd05dbd677b92
    https://github.com/scummvm/scummvm/commit/b1d2d5619897bb00f6ec1a61962bd05dbd677b92
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2018-04-07T12:40:28+02:00

Commit Message:
AUDIO: Specify 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 270263f..811feab 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 == 0xfffffffff)
+        if (chip->eg_timer == 0xfffffffffUL)
         {
             chip->eg_timer = 0;
             chip->eg_timerrem = 1;





More information about the Scummvm-git-logs mailing list