mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-01 08:25:12 +01:00
18 lines
465 B
C
18 lines
465 B
C
/****************************************************************************
|
|
* Visual Boy Advance GX
|
|
*
|
|
* Tantric September 2008
|
|
*
|
|
* preferences.h
|
|
*
|
|
* Preferences save/load to XML file
|
|
***************************************************************************/
|
|
|
|
bool SavePrefs (bool silent);
|
|
bool LoadPrefs ();
|
|
bool SavePalettes (bool silent);
|
|
bool LoadPalettes();
|
|
void SetPalette(const char *gameName);
|
|
bool SavePaletteAs(bool silent, const char *name);
|
|
|