Page 1 of 1

Kirby Tilt n' Tumble issues

Posted: Sat Jun 21, 2008 11:12 am
by GaussTek

Hello!

 

I'm using VBA-M 577 under Vista, but this also happens with an older version (478 i think).

 

Ok, is the Kirby Tilt'n Tumble US version, the save file keeps getting corrupted. First it show a warning saying "save of the battery file is now disabled!" and when the game starts it shows 255% save slots. If you choose one, the graphics are messed up.

 

Of course i alredy tried deleting the save file, but the same problem occurs.

 

Tried other GB emus, and the game works fine... also, tried an older official VBA version (1.7beta & 1.7.2) and also works fine there.

 

Any ideas what could it be the problem?

 

Thanks and sorry for my english.

 

PD. Thanks for activate my account [img]<fileStore.core_Emoticons>/emoticons/biggrin.png[/img]/emoticons/biggrin@2x.png 2x" width="20" height="20" />


Kirby Tilt n' Tumble issues

Posted: Tue Jun 24, 2008 6:59 pm
by GaussTek

Any Idea if this could/can be fixed?

 

Thanks


Kirby Tilt n' Tumble issues

Posted: Wed Jun 25, 2008 4:41 am
by MasterPhW

Please, do not double post, sometimes it needs some time to get an answer.

You could probably use the vba-over.ini, but I don't know whether it fixed the problem.

It sound slike a problem with the save type, so please post if it fixed it.


Kirby Tilt n' Tumble issues

Posted: Wed Jun 25, 2008 8:13 am
by chrono

Simple workaround:


Kirby Tilt n' Tumble issues

Posted: Wed Jun 25, 2008 7:13 pm
by GaussTek

Thanks for the replies, and sorry for double posting...

 

Ok, yeah, i think is the save type, because it creates a 1KB save file.

 

  1. Tried the vba-over.ini but didn't work, maybe only works for GBA games? Dunno lol

 

  1. The workaround, i guess you have to compile along with the source code. Dunno how to do that, so i guess i'll wait to be added to the main releases [img]<fileStore.core_Emoticons>/emoticons/smile.png[/img]/emoticons/smile@2x.png 2x" width="20" height="20" />

 

Thanks a lot for your time!


Kirby Tilt n' Tumble issues

Posted: Wed Jun 25, 2008 9:57 pm
by Squall Leonhart

Simple workaround:

 

that patch isn't even valid for the current svn....


Kirby Tilt n' Tumble issues

Posted: Thu Jun 26, 2008 6:51 am
by Squall Leonhart

Simple workaround:

 

ok, this solves the issue on a first playthrough, how ever, upon reloading the rom, an incorrect battery size error warning displays


Kirby Tilt n' Tumble issues

Posted: Thu Jun 26, 2008 7:36 am
by chrono

Code: Select all

--- dmg-old/GB.cpp	2008-06-26 13:01:48.000000000 +0200
+++ dmg/GB.cpp	2008-06-26 13:10:45.000000000 +0200
@@ -3313,12 +3313,14 @@
    case 0x13:
    case 0xfc:
      res = gbReadSaveMBC3(file);
+      break;
    case 0x1b:
    case 0x1e:
      res = gbReadSaveMBC5(file);
      break;
    case 0x22:
      res = gbReadSaveMBC7(file);
+      break;
    case 0xfd:
      if(!gbReadSaveTAMA5(file)) {
        u8 gbDaysinMonth [12] = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};

Kirby Tilt n' Tumble issues

Posted: Thu Jun 26, 2008 9:34 am
by Squall Leonhart

strange, i had to change dmg-old/GB.cpp to just GB.cpp for it to work.