mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 12:35:08 +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
392 B
C
17 lines
392 B
C
/****************************************************************************
|
|
* DiscBrowser
|
|
* USB Loader GX 2009
|
|
*
|
|
* DiscBrowser.h
|
|
***************************************************************************/
|
|
|
|
#ifndef _DISCBROWSER_H_
|
|
#define _DISCBROWSER_H_
|
|
|
|
#include <gctypes.h>
|
|
#include "usbloader/disc.h"
|
|
|
|
int DiscBrowse(const char * GameID, char * dolname, int dolname_size);
|
|
|
|
#endif
|