diff options
author | Wohlstand <admin@wohlnet.ru> | 2018-06-03 14:37:18 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2018-06-03 14:37:18 +0300 |
commit | 9ed43c5b909b1a0aafe16bbd431d6a90af3c9920 (patch) | |
tree | 129a731f5fd41c6b76f7f5fed2b62e6696d09f15 /src/chips | |
parent | 4cfba5ee6a404e71c3d7b86b7b1ec680c3d7521d (diff) | |
download | libADLMIDI-9ed43c5b909b1a0aafe16bbd431d6a90af3c9920.tar.gz libADLMIDI-9ed43c5b909b1a0aafe16bbd431d6a90af3c9920.tar.bz2 libADLMIDI-9ed43c5b909b1a0aafe16bbd431d6a90af3c9920.zip |
Another MinGW warning fix
Diffstat (limited to 'src/chips')
-rw-r--r-- | src/chips/nuked/nukedopl3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chips/nuked/nukedopl3.c b/src/chips/nuked/nukedopl3.c index 58873c4..87d3212 100644 --- a/src/chips/nuked/nukedopl3.c +++ b/src/chips/nuked/nukedopl3.c @@ -1147,7 +1147,7 @@ void OPL3_Generate(opl3_chip *chip, Bit16s *buf) if (chip->eg_timerrem || chip->eg_state) { - if (chip->eg_timer == (uint64_t)0xfffffffffll) + if (chip->eg_timer == (uint64_t)0xfffffffffU) { chip->eg_timer = 0; chip->eg_timerrem = 1; |