mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 16:35:11 +01:00
27 lines
541 B
C
27 lines
541 B
C
|
/****************************************************************************
|
||
|
* Visual Boy Advance GX
|
||
|
*
|
||
|
* Tantric October 2008
|
||
|
*
|
||
|
* gamesettings.h
|
||
|
*
|
||
|
* VBA support code
|
||
|
***************************************************************************/
|
||
|
|
||
|
#ifndef GAMESETTINGS_H
|
||
|
#define GAMESETTINGS_H
|
||
|
|
||
|
typedef struct gameSetting {
|
||
|
char gameName[100];
|
||
|
char gameID[5];
|
||
|
int saveType;
|
||
|
int rtcEnabled;
|
||
|
int flashSize;
|
||
|
int mirroringEnabled;
|
||
|
};
|
||
|
|
||
|
extern gameSetting gameSettings[];
|
||
|
extern int gameSettingsCount;
|
||
|
|
||
|
#endif
|