Skip to content

Commit cfb90c1

Browse files
committed
Add support for Mario Kart Double Dash (NTSC v1.0) (#85)
1 parent 70a9a11 commit cfb90c1

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

source/modules/games/GM4E01-0.lua

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-- Mario Kart Double Dash! (NTSC v1.0)
2+
3+
local core = require("games.core")
4+
5+
local game = {
6+
memorymap = {}
7+
}
8+
9+
core.loadGenericControllerMap(0x803A4D6C, game)
10+
11+
return game

source/music.lua

-2
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,6 @@ function music.getVolume()
179179
end
180180

181181
local LOADED = false
182-
local IGNORE_CHANGE = false
183-
184182
local ALLOW_INGAME_VOLUME = false
185183

186184
memory.hook("OnGameClosed", "Set state unloaded", function()

0 commit comments

Comments
 (0)