mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-04 01:46:42 +00:00
WAGE: Fix GCC Compiler Warnings.
This commit is contained in:
parent
7e9b8cb513
commit
3c947754ac
@ -66,7 +66,7 @@ Sound::Sound(Common::String name, Common::SeekableReadStream *data) : _name(name
|
||||
data->skip(20); // Skip header
|
||||
|
||||
byte value = 0x80;
|
||||
for (int i = 0; i < _size; i++) {
|
||||
for (uint i = 0; i < _size; i++) {
|
||||
byte d = data->readByte();
|
||||
value += deltas[d & 0xf];
|
||||
_data[i * 2] = value;
|
||||
|
Loading…
x
Reference in New Issue
Block a user