SysCheck-ModMii-Edition/include/video.h
Joostinonline bd0c05ee6b CHANGES:
-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
2013-10-18 01:25:17 +00:00

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