From b1d2d5619897bb00f6ec1a61962bd05dbd677b92 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Sat, 7 Apr 2018 12:40:28 +0200 Subject: AUDIO: Specify constant type in Nuked OPL emulator --- audio/softsynth/opl/nuked.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'audio/softsynth') diff --git a/audio/softsynth/opl/nuked.cpp b/audio/softsynth/opl/nuked.cpp index 270263f6ae..811feabe2f 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; -- cgit v1.2.3