Skip to content

Commit

Permalink
- fixed cheats menu broken in 5.4.2
Browse files Browse the repository at this point in the history
- upped to version 5.4.3
  • Loading branch information
Fledge68 committed Mar 23, 2020
1 parent 95a8bfd commit 3661b23
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified out/bins/ext_booter.bin
Binary file not shown.
Binary file modified out/boot.dol
Binary file not shown.
2 changes: 1 addition & 1 deletion source/cheats/gct.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ bool GCTCheats::IsCode(const std::string& str)
char part1[9];
char part2[9];
snprintf(part1,sizeof(part1),"%c%c%c%c%c%c%c%c",str[0],str[1],str[2],str[3],str[4],str[5],str[6],str[7]);
snprintf(part1,sizeof(part2),"%c%c%c%c%c%c%c%c",str[9],str[10],str[11],str[12],str[13],str[14],str[15],str[16]);
snprintf(part2,sizeof(part2),"%c%c%c%c%c%c%c%c",str[9],str[10],str[11],str[12],str[13],str[14],str[15],str[16]);
if ((strtok(part1,"0123456789ABCDEFabcdef") == NULL) && (strtok(part2,"0123456789ABCDEFabcdef") == NULL))
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion source/defines.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

#define APP_NAME "WiiFlow WFL"
#define APP_VERSION "5.4.2"
#define APP_VERSION "5.4.3"

#define APP_DATA_DIR "wiiflow"
#define APPS_DIR "apps/wiiflow"
Expand Down

0 comments on commit 3661b23

Please sign in to comment.