libreshop_client/source/debug.c
2023-07-21 09:07:21 +03:00

10 lines
156 B
C

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