Skip to content

Commit e38b4db

Browse files
committed
Added support for Crazy Taxi (NTSC-U v1.0)
1 parent 6de36ab commit e38b4db

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Latest downloads can be found in [releases](https://github.com/bkacjios/m-overla
1616

1717
### Supported Gamecube games:
1818

19+
* Crazy Taxi (NTSC-U v1.0)
1920
* Disney's Donald Duck Goin' Quackers (NTSC-U)
2021
* F-Zero GX (NTSC-U)
2122
* Gotcha Force (NTSC-U, PAL, NTSC-J)

source/modules/games/GCTE51-0.lua

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
-- Crazy Taxi (NTSC-U v1.0)
2+
3+
local core = require("games.core")
4+
5+
local game = {
6+
memorymap = {}
7+
}
8+
9+
core.loadGenericControllerMap(0x803F3820, game)
10+
core.loadGenericControllerMap(0x803F3860, game)
11+
12+
return game

0 commit comments

Comments
 (0)