Skip to content

Commit

Permalink
Merge pull request #148 from UltiNaruto/master
Browse files Browse the repository at this point in the history
Added support for Pitfall The Lost Expedition FR v1.0
  • Loading branch information
bkacjios authored Aug 7, 2022
2 parents 1410916 + 17ac05c commit 930b0c0
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
* Pikmin (NTSC-U v1.0, NTSC-U v1.1)
* Pikmin 2 (NTSC-U v1.0, DEMO v1.0)
- [Pikmin 251](https://www.youtube.com/watch?v=7ylu9ogW88w)
* Pitfall The Lost Expedition (NTSC-U v1.0)
* Pitfall The Lost Expedition (NTSC-U v1.0, FR v1.0)
* Super Monkey Ball (NTSC-U v1.0, NTSC-J v1.2, PAL v1.0)
* Super Monkey Ball 2 (NTSC-U v1.0)
- Super Monkey Ball Gaiden
Expand All @@ -89,7 +89,8 @@
* Scooby-Doo! - Unmasked (NTSC-U v1.0, PAL v1.0)
* Scooby-Doo! - Mystery Mayhem (NTSC-U v1.0, PAL v1.0)
* Smuggler's Run - Warzones (NTSC-U v1.0)
* Sonic Adventure 2: Battle (NTSC-U v1.0)
* Sonic Adventure DX (PAL v1.1)
* Sonic Adventure 2: Battle (NTSC-U v1.0, PAL v1.0)
* SpongeBob SquarePants: Battle for Bikini Bottom (NTSC-U v1.0)
* The SpongeBob SquarePants Movie (NTSC-U v1.1, PAL v1.0)
* Super Mario Strikers (NTSC-U v1.0)
Expand Down
5 changes: 5 additions & 0 deletions source/modules/games/GPHF52-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Pitfall The Lost Expedition (FR v1.0)

local core = require("games.core")

return core.newGame(0x80423408)
5 changes: 5 additions & 0 deletions source/modules/games/GSNP8P-0.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Sonic Adventure 2: Battle (PAL v1.0)

local core = require("games.core")

return core.newGame(0x80357F30, 0x80357F60)
5 changes: 5 additions & 0 deletions source/modules/games/GXSP8P-1.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
-- Sonic Adventure DX (PAL v1.1)

local core = require("games.core")

return core.newGame(0x80788600)

0 comments on commit 930b0c0

Please sign in to comment.