add debug header file #3

Merged
emilyd merged 6 commits from debug_helper into main 2023-07-21 06:37:36 +00:00
Showing only changes of commit 7003a9c8a3 - Show all commits

9
source/debug.c Normal file
View File

@ -0,0 +1,9 @@
// debug features for libreshop_client
#include <wiiuse/wpad.h>
void debug_pause() {
while(1) {
WPAD_ScanPads();
if (WPAD_ButtonsDown(0)) break;
}
}