mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2024-11-16 13:19:22 +01:00
bd0c05ee6b
-Added support for the new vWii System Menu's -I've got the beginnings of animation going. I still need to work on making it smooth -Fixed the ridiculous bug (possibly intentional?) where the System Menu region is defined by setting.txt, not by what's installed. -Some minor optimizations TODO: -Make those cogs turn smoothly, and possibly touch up the gfx. -Do some SERIOUS code cleanup. Just go through that source with some bleach and scrub
18 lines
354 B
C
18 lines
354 B
C
#ifndef _VIDEO_H_
|
|
#define _VIDEO_H_
|
|
|
|
// Wii Light state
|
|
#define WIILIGHT_OFF 0
|
|
#define WIILIGHT_ON 1
|
|
|
|
// Prototypes
|
|
void InitialiseVideo(void);
|
|
void SetConsoleForegroundColor(u8, u8);
|
|
void SetConsoleBackgroundColor(u8, u8);
|
|
void ClearConsole(int);
|
|
void PrintText(char *, bool, bool, bool, int, int);
|
|
void WiiLightControl(int);
|
|
|
|
#endif
|
|
|