aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/fmopl.cpp4
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]);
}