2008-08-06 03:09:59 +02:00
|
|
|
/****************************************************************************
|
2008-09-12 07:28:40 +02:00
|
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* softdev July 2006
|
|
|
|
* crunchy2 May 2007-July 2007
|
2008-09-23 06:13:33 +02:00
|
|
|
* Michniewski 2008
|
2008-09-12 07:28:40 +02:00
|
|
|
* Tantric September 2008
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
2008-08-22 04:47:08 +02:00
|
|
|
* snes9xGX.h
|
2008-08-06 03:09:59 +02:00
|
|
|
*
|
|
|
|
* This file controls overall program flow. Most things start and end here!
|
2008-09-12 07:28:40 +02:00
|
|
|
***************************************************************************/
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#ifndef _SNES9XGX_H_
|
|
|
|
#define _SNES9XGX_H_
|
|
|
|
|
2008-08-06 03:45:56 +02:00
|
|
|
#include <gccore.h>
|
2008-08-06 03:09:59 +02:00
|
|
|
#include "snes9x.h"
|
|
|
|
|
2008-08-22 04:47:08 +02:00
|
|
|
#define VERSIONNUM "005"
|
|
|
|
#define VERSIONSTR "Snes9x GX 005"
|
2008-08-06 03:09:59 +02:00
|
|
|
|
|
|
|
#define NOTSILENT 0
|
|
|
|
#define SILENT 1
|
|
|
|
|
2008-08-07 05:25:02 +02:00
|
|
|
enum {
|
|
|
|
METHOD_AUTO,
|
|
|
|
METHOD_SD,
|
|
|
|
METHOD_USB,
|
|
|
|
METHOD_DVD,
|
|
|
|
METHOD_SMB,
|
|
|
|
METHOD_MC_SLOTA,
|
|
|
|
METHOD_MC_SLOTB
|
|
|
|
};
|
|
|
|
|
2008-08-06 03:09:59 +02:00
|
|
|
struct SGCSettings{
|
2008-08-20 09:58:55 +02: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 05:25:16 +02:00
|
|
|
char LoadFolder[200]; // Path to game files
|
2008-08-10 05:14:39 +02:00
|
|
|
char SaveFolder[200]; // Path to save files
|
2008-08-12 05:25:16 +02:00
|
|
|
char CheatFolder[200]; // Path to cheat files
|
2008-08-10 05:14:39 +02: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 09:58:55 +02:00
|
|
|
int NGCZoom; // 0 - off, 1 - on
|
|
|
|
int VerifySaves;
|
2008-09-11 04:23:48 +02:00
|
|
|
int render; // 0 - original, 1 - filtered, 2 - unfiltered
|
2008-08-20 09:58:55 +02:00
|
|
|
int Superscope;
|
|
|
|
int Mouse;
|
|
|
|
int Justifier;
|
2008-08-25 07:57:43 +02:00
|
|
|
int widescreen; // 0 - 4:3 aspect, 1 - 16:9 aspect
|
2008-09-28 04:13:19 +02:00
|
|
|
int xshift; // video output shift
|
|
|
|
int yshift;
|
2008-08-06 03:09:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
extern struct SGCSettings GCSettings;
|
|
|
|
|
2008-08-07 05:25:02 +02:00
|
|
|
#endif
|