From 2cb53409f0a1d08a26b1731ddc617a420cd9342a Mon Sep 17 00:00:00 2001 From: zaksabeast <19464008+zaksabeast@users.noreply.github.com> Date: Fri, 18 Mar 2022 10:33:41 -0500 Subject: [PATCH] Update for PLA 1.1.1 and Csight 0.12.6 --- Makefile | 2 +- src/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1284cdaf..94948054 100644 --- a/Makefile +++ b/Makefile @@ -39,7 +39,7 @@ include $(DEVKITPRO)/libnx/switch_rules #--------------------------------------------------------------------------------- APP_TITLE := CaptureSight -APP_VERSION := 0.12.5 +APP_VERSION := 0.12.6 TARGET := capturesight BUILD := build diff --git a/src/main.cpp b/src/main.cpp index 6e015602..c31cd419 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -50,7 +50,7 @@ class MainOverlay : public tsl::Overlay { std::array supported_pearl_build_id = { 0x38, 0xF5, 0x9C, 0xBD, 0xA2, 0xEB, 0x9C, 0x44 }; tryGameWithBuildId(MainBdSpView, SupportedGame::ShiningPearl, supported_pearl_build_id); - std::array supported_arceus_build_id = { 0x66, 0xF1, 0x5C, 0x28, 0x1E, 0xFA, 0x7A, 0xDD }; + std::array supported_arceus_build_id = { 0xAE, 0xE8, 0xF1, 0x50, 0xDD, 0xA1, 0xB5, 0xA8 }; tryGameWithBuildId(MainArceusView, SupportedGame::Arceus, supported_arceus_build_id); return initially("Unsupported game!\n\nTitle Id:\n" + utils::num_to_hex(title_id));