Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
d0k3 committed Feb 22, 2018
1 parent 78469db commit a996b71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "sochlp.h"
#include "hid.h"

#define APP_NAME "ARM9 Netload Companion v0.1.3a"
#define APP_NAME "ARM9 Netload Companion v0.1.4"

#define PAYLOAD_PATH_GM9 "/gm9/payloads"
#define PAYLOAD_PATH_LUMA "/luma/payloads"
Expand Down Expand Up @@ -192,7 +192,7 @@ s32 recv_arm9_payload (void) {
}

printf("[x] IP %s:%d\n", inet_ntoa(sa.sin_addr), NETWORK_PORT);
printf("[?] mode: %s (set with R)\r", (gm9launch) ? "gm9" : "ask");
printf("[?] mode: %s (set with R)\r", (gm9launch) ? "fcram" : "ask");

sflags = fcntl(sockfd, F_GETFL);
if (sflags == -1) {
Expand All @@ -211,7 +211,7 @@ s32 recv_arm9_payload (void) {
return 0;
} else if (hidKeysDown() & KEY_R) {
gm9launch = !gm9launch;
printf("[?] mode: %s (set with R) \r", (gm9launch) ? "gm9" : "ask");
printf("[?] mode: %s (set with R) \r", (gm9launch) ? "fcram" : "ask");
}


Expand Down

0 comments on commit a996b71

Please sign in to comment.