Skip to content

Commit

Permalink
update to new libnx api and add a forgotten icon revision
Browse files Browse the repository at this point in the history
  • Loading branch information
3096 committed Sep 18, 2019
1 parent c240b6f commit db1cfc5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 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 := 0
VERSION_MINOR := 1
VERSION_MICRO := 1
VERSION_MICRO := 2

APP_TITLE := Y'allAreNUTs
APP_AUTHOR := 3096
Expand Down
Binary file modified icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 2 additions & 4 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

#include <switch.h>

#include "../ipswitch/source/console.h"

const char * EXPORT_DIR = "save/";
const char * INJECT_DIR = "inject/";
const char * SAVE_DEV = "save";
Expand All @@ -33,7 +31,7 @@ Result getSaveList(std::vector<FsSaveDataInfo> & saveInfoList) {

for(; R_SUCCEEDED(rc) && total_entries > 0;
rc = fsSaveDataIteratorRead(&iterator, &info, 1, &total_entries)) {
if (info.SaveDataType == FsSaveDataType_SaveData) {
if (info.saveDataType == FsSaveDataType_SaveData) {
saveInfoList.push_back(info);
}
}
Expand Down Expand Up @@ -353,7 +351,7 @@ int main(int argc, char **argv)
printf("Failed to get save list 0x%x\n", rc);
}

printf("Y'allAreNUTs v0.1.1\n"
printf("Y'allAreNUTs v0.1.2\n"
"Press UP and DOWN to select a save\n"
"Press LEFT and RIGHT to skip 5 saves\n"
"Press A to dump save to 'save/'\n"
Expand Down

0 comments on commit db1cfc5

Please sign in to comment.