mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 16:35:16 +01:00
dee563ab2d
- added: alphabetical file sorting - added: background logo/backdrop + nicer menus - added: scrolling in ROM selector - fixed: switching between pal/ntsc ROMS doesn't mess up timings - fixed: GC controller config works now - fixed: freeze autoloading on ROM load - fixed: zipped ROMS should now load in a reasonable time - fixed: precompiled dols for autosaving to various locations (see readme) - changed: GC default quickload slot (to sd) (thanks kerframil) - changed: default load/save dirs are now "/snes9x/roms" and "/snes/save/" (thanks kerframil) - changed: Classic X and Y defaults aren't switched - changed: if autosave is enabled, it doesn't ask to save SRAM anymore. It is saved in the background. - updated README
25 lines
521 B
C
25 lines
521 B
C
/****************************************************************************
|
|
* Snes9x 1.50
|
|
*
|
|
* Nintendo Gamecube Filesel - borrowed from GPP
|
|
*
|
|
* softdev July 2006
|
|
* crunchy2 May 2007
|
|
****************************************************************************/
|
|
|
|
#ifndef _NGCFILESEL_
|
|
#define _NGCFILESEL_
|
|
|
|
int OpenDVD ();
|
|
int OpenSMB ();
|
|
int OpenSD ();
|
|
|
|
#define LOAD_DVD 1
|
|
#define LOAD_SMB 2
|
|
#define LOAD_SDC 4
|
|
#define ROOTSDDIR "fat:/"
|
|
#define SNESROMDIR "snes9x/roms"
|
|
#define SNESSAVEDIR "snes9x/saves"
|
|
|
|
#endif
|