mirror of
https://github.com/AuroraWright/SafeA9LHInstaller.git
synced 2025-06-26 13:42:45 +00:00
21 lines
363 B
C
21 lines
363 B
C
/*
|
|
* utils.h
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "types.h"
|
|
|
|
#define HID_PAD (*(vu16 *)0x10146000 ^ 0xFFF)
|
|
#define BUTTON_SELECT (1 << 2)
|
|
#define BUTTON_START (1 << 3)
|
|
|
|
#define COLOR_TITLE 0xFF9900
|
|
#define COLOR_WHITE 0xFFFFFF
|
|
#define COLOR_RED 0x0000FF
|
|
#define COLOR_GREEN 0x00FF00
|
|
|
|
int pos_y;
|
|
|
|
u32 waitInput(void);
|
|
void shutdown(u32 mode, const char *message); |