Skip to content

Commit

Permalink
2.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kronos2308 committed May 23, 2023
1 parent abbf387 commit bdd4020
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules
#---------------------------------------------------------------------------------
VERSION_MAJOR := 2
VERSION_MINOR := 7
VERSION_MICRO := 2
VERSION_MICRO := 3

VERSION_EXDAT := 1
APP_TITLE := RipJKAnimeNX
Expand Down
Binary file modified out/RipJKAnimeNX.nro
Binary file not shown.
Binary file modified out/RipJKAnimeNX[05B9DB505ABBE000][v0].nsp
Binary file not shown.
2 changes: 1 addition & 1 deletion romfs/V
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.2
2.7.3
8 changes: 4 additions & 4 deletions source/JKanime.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ int AnimeLoader(void* data){
if (AppletMode) InstallNSP("romfs:/05B9DB505ABBE000.nsp");
SDL_Delay(3000);
if (AppletMode) quit=true;
if(quit) return 0;
if(quit) throw "Error is AppletMode";;
}

//execute this once, or if Mgate is true
Expand Down Expand Up @@ -94,7 +94,7 @@ int AnimeLoader(void* data){
CheckUpdates(AppletMode);
steep++;
//exit thread if are in applet mode
if (AppletMode) {quit=true; return 0;}
if (AppletMode) {quit=true; throw "Error is AppletMode";}

steep++;//Get main page
//GetCookies();//Get Cookies
Expand Down Expand Up @@ -278,11 +278,11 @@ int AnimeLoader(void* data){
} catch(...) {
LOG::E(2);
cout << "- Thread Chain Error Catched, Steep#" << steep <<endl;
appletOverrideAutoSleepTimeAndDimmingTime(1800, 0, 500, 0);
//appletOverrideAutoSleepTimeAndDimmingTime(1800, 0, 500, 0);
//cout << UD << endl;
}
if (themeT.joinable()) {themeT.join();}
if(quit) write_DB(AB,rootdirectory+"AnimeBase.json");
if (themeT.joinable()) {themeT.join();}
cout << "# End Thread Chain" << endl;
ChainManager(false,!isDownloading&&!isChained);
isChained=false;
Expand Down

0 comments on commit bdd4020

Please sign in to comment.