X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=platform%2Fgp2x%2Fmenu.c;h=ef54ed6322c3d1236f9f4a9ba802037589992bf2;hb=689fb2c0898deb6f87006dc5755516eb0ff6e647;hp=8b4968ce516cbafa204227c5e1d8a74c87bbc221;hpb=ea08c2967b1c61e3b81c911dfd5eb7a0e72a28bf;p=picodrive.git diff --git a/platform/gp2x/menu.c b/platform/gp2x/menu.c index 8b4968c..ef54ed6 100644 --- a/platform/gp2x/menu.c +++ b/platform/gp2x/menu.c @@ -155,11 +155,12 @@ static void cdload_progress_cb(int percent) smalltext_out16(1, 3*10, "Processing CD image / MP3s", 0xffff); smalltext_out16_lim(1, 4*10, romFileName, 0xffff, 80); - dst += 30; + dst += 320*30; if (len > 320) len = 320; for (ln = 8; ln > 0; ln--, dst += 320) memset(dst, 0xff, len*2); + menu_flip(); cdload_called = 1; } @@ -182,7 +183,7 @@ void menu_romload_prepare(const char *rom_name) void menu_romload_end(void) { - PicoCartLoadProgressCB = NULL; + PicoCartLoadProgressCB = PicoCDLoadProgressCB = NULL; smalltext_out16(1, cdload_called ? 60 : 30, "Starting emulation...", 0xffff); menu_flip(); } @@ -837,6 +838,7 @@ static bind_action_t emuctrl_actions[] = { "Switch Renderer", 1<<26 }, { "Volume Down ", 1<<30 }, { "Volume Up ", 1<<29 }, + { "Fast forward ", 1<<22 }, { "Enter Menu ", 1<<23 }, };