Compare commits

..

No commits in common. "0ebd26d5612d5f3fa9b23ec9a63c7c2bb63ecd97" and "630133f77a449e847b4aac7883af45a47de24697" have entirely different histories.

3 changed files with 0 additions and 14 deletions

View File

@ -1,6 +1,4 @@
// debug features for libreshop_client // debug features for libreshop_client
#include <stdio.h>
#include <gccore.h>
#include <wiiuse/wpad.h> #include <wiiuse/wpad.h>
void debug_pause() { void debug_pause() {
@ -9,9 +7,3 @@ void debug_pause() {
if (WPAD_ButtonsDown(0)) break; if (WPAD_ButtonsDown(0)) break;
} }
} }
void debug_npause() {
printf("Press any button to continue...\n");
VIDEO_WaitVSync();
debug_pause();
}

View File

@ -2,6 +2,5 @@
#define DEBUG_H #define DEBUG_H
void debug_pause(); void debug_pause();
void debug_npause();
#endif #endif

View File

@ -29,10 +29,8 @@ void logprint(int type, char *message) {
break; break;
case 2: case 2:
printf("\x1b[34m[\x1b[31m--\x1b[34m]"); printf("\x1b[34m[\x1b[31m--\x1b[34m]");
break;
case 3: case 3:
printf("\x1b[31m!!\x1b[34m]"); printf("\x1b[31m!!\x1b[34m]");
break;
default: default:
printf(" "); printf(" ");
} }
@ -73,9 +71,6 @@ int main(int argc, char **argv) {
printheader(); printheader();
logprint(0, "Welcome to LibreShop!\n"); logprint(0, "Welcome to LibreShop!\n");
#ifdef DEBUG_H
logprint(2, "Warning! You are running a DEBUG build.\n");
#endif
logprint(0, "Initializing network.\n"); logprint(0, "Initializing network.\n");
ret = if_config(localip, netmask, gateway, TRUE, 20); ret = if_config(localip, netmask, gateway, TRUE, 20);