mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
Cyclone poll detection problem fixed
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@307 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
ea08c2967b
commit
ca61ee42d9
17 changed files with 97 additions and 139 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue