Skip to content

Commit db1cfc5

Browse files
committed
update to new libnx api and add a forgotten icon revision
1 parent c240b6f commit db1cfc5

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ include $(DEVKITPRO)/libnx/switch_rules
3232
#---------------------------------------------------------------------------------
3333
VERSION_MAJOR := 0
3434
VERSION_MINOR := 1
35-
VERSION_MICRO := 1
35+
VERSION_MICRO := 2
3636

3737
APP_TITLE := Y'allAreNUTs
3838
APP_AUTHOR := 3096

icon.jpg

6.81 KB
Loading

source/main.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
#include <switch.h>
99

10-
#include "../ipswitch/source/console.h"
11-
1210
const char * EXPORT_DIR = "save/";
1311
const char * INJECT_DIR = "inject/";
1412
const char * SAVE_DEV = "save";
@@ -33,7 +31,7 @@ Result getSaveList(std::vector<FsSaveDataInfo> & saveInfoList) {
3331

3432
for(; R_SUCCEEDED(rc) && total_entries > 0;
3533
rc = fsSaveDataIteratorRead(&iterator, &info, 1, &total_entries)) {
36-
if (info.SaveDataType == FsSaveDataType_SaveData) {
34+
if (info.saveDataType == FsSaveDataType_SaveData) {
3735
saveInfoList.push_back(info);
3836
}
3937
}
@@ -353,7 +351,7 @@ int main(int argc, char **argv)
353351
printf("Failed to get save list 0x%x\n", rc);
354352
}
355353

356-
printf("Y'allAreNUTs v0.1.1\n"
354+
printf("Y'allAreNUTs v0.1.2\n"
357355
"Press UP and DOWN to select a save\n"
358356
"Press LEFT and RIGHT to skip 5 saves\n"
359357
"Press A to dump save to 'save/'\n"

0 commit comments

Comments
 (0)