mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
32144f46f9
*Lots of small fixes *Added Error002fix selection in GameSettings **NOTE 1: You might want to delete your Configfiles before using this new Rev. **NOTE 2: Known issue with Settings is that WiiMotePointer is sometimes being displaced. I am searching for the reason right now.
34 lines
579 B
C
34 lines
579 B
C
/****************************************************************************
|
|
* libwiigui Template
|
|
* Tantric 2009
|
|
*
|
|
* menu.h
|
|
* Menu flow routines - handles all menu logic
|
|
***************************************************************************/
|
|
|
|
#ifndef _MENU_H_
|
|
#define _MENU_H_
|
|
|
|
#include <ogcsys.h>
|
|
#include "main.h"
|
|
#include "cfg.h"
|
|
|
|
void InitGUIThreads(void);
|
|
void ExitGUIThreads(void);
|
|
|
|
int MainMenu (int menuitem);
|
|
|
|
enum
|
|
{
|
|
MENU_EXIT = -1,
|
|
MENU_NONE,
|
|
MENU_SETTINGS,
|
|
MENU_DISCLIST,
|
|
MENU_FORMAT,
|
|
MENU_INSTALL,
|
|
MENU_CHECK,
|
|
MENU_GAME_SETTINGS
|
|
};
|
|
|
|
#endif
|