2008-08-06 01:09:59 +00:00
|
|
|
/****************************************************************************
|
2008-09-12 05:28:40 +00:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007-July 2007
|
2008-09-23 04:13:33 +00:00
|
|
|
* Michniewski 2008
|
2008-09-12 05:28:40 +00:00
|
|
|
* Tantric September 2008
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
2008-08-22 02:47:08 +00:00
|
|
|
* snes9xGX.h
|
2008-08-06 01:09:59 +00:00
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
2008-09-12 05:28:40 +00:00
|
|
|
***************************************************************************/
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#ifndef _SNES9XGX_H_
|
|
|
|
#define _SNES9XGX_H_
|
|
|
|
|
2008-08-06 01:45:56 +00:00
|
|
|
#include <gccore.h>
|
2008-08-06 01:09:59 +00:00
|
|
|
#include "snes9x.h"
|
|
|
|
|
2008-10-16 01:31:48 +00:00
|
|
|
#define VERSIONNUM "006"
|
|
|
|
#define VERSIONSTR "Snes9x GX 006"
|
2008-08-06 01:09:59 +00:00
|
|
|
|
|
|
|
#define NOTSILENT 0
|
|
|
|
#define SILENT 1
|
|
|
|
|
2008-08-07 03:25:02 +00:00
|
|
|
enum {
|
|
|
|
METHOD_AUTO,
|
|
|
|
METHOD_SD,
|
|
|
|
METHOD_USB,
|
|
|
|
METHOD_DVD,
|
|
|
|
METHOD_SMB,
|
|
|
|
METHOD_MC_SLOTA,
|
|
|
|
METHOD_MC_SLOTB
|
|
|
|
};
|
|
|
|
|
2008-08-06 01:09:59 +00:00
|
|
|
struct SGCSettings{
|
2008-08-20 07:58:55 +00:00
|
|
|
int AutoLoad;
|
|
|
|
int AutoSave;
|
|
|
|
int LoadMethod; // For ROMS: Auto, SD, DVD, USB, Network (SMB)
|
|
|
|
int SaveMethod; // For SRAM, Freeze, Prefs: Auto, SD, Memory Card Slot A, Memory Card Slot B, USB, SMB
|
2008-08-12 03:25:16 +00:00
|
|
|
char LoadFolder[200]; // Path to game files
|
2008-08-10 03:14:39 +00:00
|
|
|
char SaveFolder[200]; // Path to save files
|
2008-08-12 03:25:16 +00:00
|
|
|
char CheatFolder[200]; // Path to cheat files
|
2008-08-10 03:14:39 +00:00
|
|
|
char gcip[16];
|
|
|
|
char gwip[16];
|
|
|
|
char mask[16];
|
|
|
|
char smbip[16];
|
|
|
|
char smbuser[20];
|
|
|
|
char smbpwd[20];
|
|
|
|
char smbgcid[20];
|
|
|
|
char smbsvid[20];
|
|
|
|
char smbshare[20];
|
2008-08-20 07:58:55 +00:00
|
|
|
int NGCZoom; // 0 - off, 1 - on
|
|
|
|
int VerifySaves;
|
2008-09-11 02:23:48 +00:00
|
|
|
int render; // 0 - original, 1 - filtered, 2 - unfiltered
|
2008-08-20 07:58:55 +00:00
|
|
|
int Superscope;
|
|
|
|
int Mouse;
|
|
|
|
int Justifier;
|
2008-08-25 05:57:43 +00:00
|
|
|
int widescreen; // 0 - 4:3 aspect, 1 - 16:9 aspect
|
2008-09-28 02:13:19 +00:00
|
|
|
int xshift; // video output shift
|
|
|
|
int yshift;
|
2008-08-06 01:09:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct SGCSettings GCSettings;
|
|
|
|
|
2008-08-07 03:25:02 +00:00
|
|
|
#endif
|