From 0fea416058220727cc64c65c7c36fdb012415bc6 Mon Sep 17 00:00:00 2001 From: Bobby Dilley Date: Sat, 24 Feb 2024 21:44:29 +0000 Subject: [PATCH] Update some of the controller configs --- src/lindbergh/config.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/lindbergh/config.c b/src/lindbergh/config.c index 1d51879..bd3a69a 100644 --- a/src/lindbergh/config.c +++ b/src/lindbergh/config.c @@ -107,6 +107,7 @@ static int detectGame(uint32_t elf_crc) config.emulateDriveboard = 1; config.emulateMotionboard = 1; config.gameStatus = WORKING; + config.gameType = DRIVING; return 0; } break; @@ -140,6 +141,7 @@ static int detectGame(uint32_t elf_crc) case LETS_GO_JUNGLE: { config.gameTitle = "Let's Go Jungle! Lost on the Island of Spice!"; + config.gameDVP = "DVP-0011"; config.gameStatus = WORKING; return 0; } @@ -190,6 +192,7 @@ static int detectGame(uint32_t elf_crc) { config.gameTitle = "Initial D Arcade Stage 4"; config.gameStatus = WORKING; + config.gameType = DRIVING; return 0; } break; @@ -198,6 +201,7 @@ static int detectGame(uint32_t elf_crc) { config.gameTitle = "Initial D Arcade Stage 4 Rev E"; config.gameStatus = WORKING; + config.gameType = DRIVING; return 0; } break; @@ -207,6 +211,7 @@ static int detectGame(uint32_t elf_crc) config.gameTitle = "SEGA Race TV"; config.emulateDriveboard = 1; config.gameStatus = WORKING; + config.gameType = DRIVING; return 0; } break; @@ -227,6 +232,7 @@ static int detectGame(uint32_t elf_crc) config.gameTitle = "R Tuned"; config.emulateDriveboard = 1; config.gameStatus = WORKING; + config.gameType = DRIVING; return 0; } break; @@ -267,7 +273,8 @@ static int detectGame(uint32_t elf_crc) case PRIMEVAL_HUNT: { config.gameTitle = "Primeval Hunt"; - config.gameStatus = NOT_WORKING; + config.gameStatus = WORKING; + config.gameType = SHOOTING; return 0; } break;