Index: apps/plugins/rockboy/loader.c =================================================================== --- apps/plugins/rockboy/loader.c (Revision 28597) +++ apps/plugins/rockboy/loader.c (Arbeitskopie) @@ -229,11 +229,11 @@ ram.loaded = 1; fd = open(sramfile, O_RDONLY); - snprintf(meow,499,"Opening %s %d",sramfile,fd); - rb->splash(HZ*2, meow); + snprintf(meow,499,"Opening %s",sramfile); + rb->splash(0, meow); if (fd<0) return -1; snprintf(meow,499,"Loading savedata from %s",sramfile); - rb->splash(HZ*2, meow); + rb->splash(0, meow); read(fd,ram.sbank, 8192*mbc.ramsize); close(fd); @@ -252,7 +252,7 @@ fd = open(sramfile, O_WRONLY|O_CREAT|O_TRUNC, 0666); if (fd<0) return -1; snprintf(meow,499,"Saving savedata to %s",sramfile); - rb->splash(HZ*2, meow); + rb->splash(0, meow); write(fd,ram.sbank, 8192*mbc.ramsize); close(fd); @@ -289,7 +289,7 @@ romfile = s; if(rom_load()) return; - rb->splash(HZ/2, rom.name); + rb->splash(0, rom.name); snprintf(saveprefix, 499, "%s/%s", savedir, rom.name);