Skip to content

Commit

Permalink
Update for PLA 1.1.1 and Csight 0.12.6
Browse files Browse the repository at this point in the history
  • Loading branch information
zaksabeast committed Mar 18, 2022
1 parent 10d17c2 commit 2cb5340
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class MainOverlay : public tsl::Overlay {
std::array<u8, 8> supported_pearl_build_id = { 0x38, 0xF5, 0x9C, 0xBD, 0xA2, 0xEB, 0x9C, 0x44 };
tryGameWithBuildId(MainBdSpView, SupportedGame::ShiningPearl, supported_pearl_build_id);

std::array<u8, 8> supported_arceus_build_id = { 0x66, 0xF1, 0x5C, 0x28, 0x1E, 0xFA, 0x7A, 0xDD };
std::array<u8, 8> supported_arceus_build_id = { 0xAE, 0xE8, 0xF1, 0x50, 0xDD, 0xA1, 0xB5, 0xA8 };
tryGameWithBuildId(MainArceusView, SupportedGame::Arceus, supported_arceus_build_id);

return initially<ErrorView>("Unsupported game!\n\nTitle Id:\n" + utils::num_to_hex(title_id));
Expand Down

0 comments on commit 2cb5340

Please sign in to comment.