Merge branch 'main' into main

This commit is contained in:
nez 2023-07-21 13:48:12 +00:00
commit efd99afe06
3 changed files with 14 additions and 0 deletions

View File

@ -1,4 +1,6 @@
// 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() {
@ -7,3 +9,9 @@ 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,5 +2,6 @@
#define DEBUG_H #define DEBUG_H
void debug_pause(); void debug_pause();
void debug_npause();
#endif #endif

View File

@ -32,8 +32,10 @@ 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(" ");
} }
@ -74,6 +76,9 @@ 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);