Skip to content

Commit

Permalink
Added support for Ed, Edd n Eddy: The Mis-Edventures (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkacjios committed Mar 26, 2022
1 parent 7d1f7f0 commit 24e7d89
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions source/modules/games/GE9E5D-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
-- Ed, Edd n Eddy - The Mis-Edventures (NTSC-U v1.0)

local core = require("games.core")

local game = core.newGame(0x8038B2B4)

function game.translateJoyStick(x, y)
x = x/56
y = y/56
return x, y
end

function game.translateCStick(x, y)
x = x/44
y = y/44
return x, y
end

return game

0 comments on commit 24e7d89

Please sign in to comment.