diff options
| author | Max Horn | 2004-10-21 23:03:09 +0000 |
|---|---|---|
| committer | Max Horn | 2004-10-21 23:03:09 +0000 |
| commit | 5c87bcafa6094239270e65cafe6a9c8a203bdb7c (patch) | |
| tree | 32488a6e5f5f44149924cffd3b5f215b4218ed24 /backends/midi/mt32/synth.cpp | |
| parent | 7e339bfbd23c0ab4cf0e010a1ff5243fe10bc92e (diff) | |
| download | scummvm-rg350-5c87bcafa6094239270e65cafe6a9c8a203bdb7c.tar.gz scummvm-rg350-5c87bcafa6094239270e65cafe6a9c8a203bdb7c.tar.bz2 scummvm-rg350-5c87bcafa6094239270e65cafe6a9c8a203bdb7c.zip | |
Fix sign warnings
svn-id: r15638
Diffstat (limited to 'backends/midi/mt32/synth.cpp')
| -rw-r--r-- | backends/midi/mt32/synth.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/midi/mt32/synth.cpp b/backends/midi/mt32/synth.cpp index 9a35c7e5cb..b9164c77c8 100644 --- a/backends/midi/mt32/synth.cpp +++ b/backends/midi/mt32/synth.cpp @@ -2988,7 +2988,7 @@ bool CSynthMT32::InitTables(const char *baseDir ) { for (int i = 0; i < 4; ++i) { waveforms[i][f] = (Bit16s *)malloc(waveformsize[i][f]); - for (int j = 0; j < waveformsize[i][f]/2; ++j) + for (uint j = 0; j < waveformsize[i][f]/2; ++j) waveforms[i][f][j] = fp.readSint16LE(); } #endif |
