summaryrefslogtreecommitdiff
path: root/apps/main_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main_menu.c')
-rw-r--r--apps/main_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index a2694adc39..ff09568509 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -139,7 +139,7 @@ bool show_info(void)
139{ 139{
140 char s[32], s2[32]; 140 char s[32], s2[32];
141 /* avoid overflow for 8MB mod :) was: ((mp3end - mp3buf) * 1000) / 0x100000; */ 141 /* avoid overflow for 8MB mod :) was: ((mp3end - mp3buf) * 1000) / 0x100000; */
142 int buflen = ((mp3end - mp3buf) * 100) / 0x19999; 142 long buflen = ((mp3end - mp3buf) * 100) / 0x19999;
143 int integer, decimal; 143 int integer, decimal;
144 bool done = false; 144 bool done = false;
145 int key; 145 int key;