Skip to content

Commit

Permalink
Fix for Froggie and Beef Drop so they play in the right regions - and…
Browse files Browse the repository at this point in the history
… now at full speed!
  • Loading branch information
wavemotion-dave committed Dec 12, 2020
1 parent 9647b19 commit 05b9af9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Binary file modified A7800DS.nds
Binary file not shown.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.2b
VERSION=1.2c
TARGNAME=A7800DS

#---------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions arm9/source/a7800utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -842,8 +842,8 @@ void dsMainLoop(void)
last_keys_pressed = keys_pressed;
if ( (keys_pressed & KEY_START) ) {tchepres(10);} // BUTTON PAUSE
if ( (keys_pressed & KEY_SELECT) ) { tchepres(11); } // BUTTON SELECT
if ( (keys_pressed & KEY_X) ) { fpsDisplay = 1-fpsDisplay; if (!fpsDisplay) dsPrintValue(0,0,0," ");}
if ( (keys_pressed & KEY_Y) ) { full_speed = 1-full_speed; }
if ( (keys_pressed & KEY_X) ) { fpsDisplay = 1-fpsDisplay; gTotalAtariFrames=0; if (!fpsDisplay) dsPrintValue(0,0,0," ");}
if ( (keys_pressed & KEY_Y) ) { full_speed = 1-full_speed; if (full_speed) dsPrintValue(28,0,0,"FS"); else dsPrintValue(28,0,0," ");}
if ( (keys_pressed & KEY_R) ) { cartridge_yOffset++; bRefreshXY = true; }
if ( (keys_pressed & KEY_L) ) { cartridge_yOffset--; bRefreshXY = true; }
}
Expand Down
4 changes: 2 additions & 2 deletions arm9/source/emu/Database.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Database_Entry game_list[] = {
{"babe2bc2976688bafb8b23c192658126",1,true, 2,1,1,0, 22}, // title=Barnyard Blaster
{"f5f6b69c5eb4b55fc163158d1a6b423e",4,false,1,1,0,0, 22}, // title=Basketbrawl
{"fba002089fcfa176454ab507e0eb76cb",4,false,1,1,1,0, 22}, // title=Basketbrawl
{"78b1061d651ef806becac1dd3fda29a0",0,true ,1,1,1,0, 26}, // title=Beef Drop (Final Atariage)
{"78b1061d651ef806becac1dd3fda29a0",0,true ,1,1,0,0, 16}, // title=Beef Drop (Final Atariage)
{"4e325918a8b3bbcf2f9405040abcfc6d",0,false,1,1,0,0, 26}, // title=BonQ (found on Atairage Age site ... no graphical glitches)
{"9fa7743a016c9b7015ee1d386326f88e",0,false,1,1,0,0, 26}, // title=BonQ (final Atariage ... some graphical glitches)
{"5a09946e57dbe30408a8f253a28d07db",0,false,1,1,0,0, 22}, // title=Centipede
Expand Down Expand Up @@ -84,7 +84,7 @@ Database_Entry game_list[] = {
{"e80f24e953563e6b61556737d67d3836",4,false,1,1,1,0, 22}, // title=Fight Night
{"cf76b00244105b8e03cdc37677ec1073",0,false,1,1,0,0, 22}, // title=Food Fight
{"de0d4f5a9bf1c1bddee3ed2f7ec51209",0,false,1,1,1,0, 22}, // title=Food Fight
{"6053233cb59c0b4ca633623fd76c4576",0,true, 1,1,1,0, 24}, // title=Froggie
{"6053233cb59c0b4ca633623fd76c4576",0,true, 1,1,0,0, 13}, // title=Froggie (homebrew)
{"fb8d803b328b2e442548f7799cfa9a4a",0,false,1,1,0,0, 22}, // title=Galaga
{"f5dc7dc8e38072d3d65bd90a660148ce",0,false,1,1,1,0, 22}, // title=Galaga
{"06204dadc975be5e5e37e7cc66f984cf",0,false,1,1,0,0, 22}, // title=Gato
Expand Down

0 comments on commit 05b9af9

Please sign in to comment.