diff options
author | Max Horn | 2003-01-30 23:33:22 +0000 |
---|---|---|
committer | Max Horn | 2003-01-30 23:33:22 +0000 |
commit | ee047a0fa867d5b9cde911298d59d65e0f4a22e0 (patch) | |
tree | dcc262cd96bd16e2b2639fccb3a8f5a216605df1 | |
parent | ca8d49f2e1a9dafc9641d841a13f2c85b21e457a (diff) | |
download | scummvm-rg350-ee047a0fa867d5b9cde911298d59d65e0f4a22e0.tar.gz scummvm-rg350-ee047a0fa867d5b9cde911298d59d65e0f4a22e0.tar.bz2 scummvm-rg350-ee047a0fa867d5b9cde911298d59d65e0f4a22e0.zip |
fix warning
svn-id: r6579
-rw-r--r-- | sound/fmopl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/fmopl.cpp b/sound/fmopl.cpp index ed2fab72bb..2168589864 100644 --- a/sound/fmopl.cpp +++ b/sound/fmopl.cpp @@ -227,10 +227,10 @@ void OPLBuildTables(int ENV_BITS_PARAM, int EG_ENT_PARAM) { EG_AED = EG_DST; //EG_STEP = (96.0/EG_ENT); - for (i=0; i<sizeof(KSL_TABLE_SEED); i++) + for (i=0; i < (int)sizeof(KSL_TABLE_SEED); i++) KSL_TABLE[i] = SC_KSL(KSL_TABLE_SEED[i]); - for (i=0; i<sizeof(SL_TABLE_SEED); i++) + for (i=0; i < (int)sizeof(SL_TABLE_SEED); i++) SL_TABLE[i] = SC_SL(SL_TABLE_SEED[i]); } |