mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
23 lines
571 B
C
23 lines
571 B
C
|
/****************************************************************************
|
||
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
||
|
*
|
||
|
* softdev July 2006
|
||
|
* crunchy2 May 2007
|
||
|
* Michniewski 2008
|
||
|
* Tantric 2008-2009
|
||
|
*
|
||
|
* s9xconfig.h
|
||
|
*
|
||
|
* Configuration parameters are here for easy maintenance.
|
||
|
* Refer to Snes9x.h for all combinations.
|
||
|
* The defaults used here are taken directly from porting.html
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef _S9XCONFIG_
|
||
|
#define _S9XCONFIG_
|
||
|
|
||
|
void FixInvalidSettings();
|
||
|
void DefaultSettings();
|
||
|
|
||
|
#endif
|