mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
5b2f453d9e
*restructured game settings for different types of games (Wii/GC/Channels) *added uninstall option for emu nand channels and game cube games (iso only) *add display of game size from wii disc games on game prompt *add game size display for game cube games (iso only) *force interlace mode on GC games except when explicitly used FORCE 480p PAL/NTSC *removed mountMethod global variable which was annoying me very much *some source cleanup
17 lines
387 B
C
17 lines
387 B
C
/****************************************************************************
|
|
* PromptWindows
|
|
* USB Loader GX 2009
|
|
*
|
|
* PromptWindows.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _GAMEINFO_H_
|
|
#define _GAMEINFO_H_
|
|
|
|
#include "usbloader/disc.h"
|
|
|
|
int showGameInfo(int selectedGame, struct discHdr *header);
|
|
bool save_gamelist(int txt);
|
|
|
|
#endif
|