aboutsummaryrefslogtreecommitdiff
path: root/source/snes9x.h
diff options
context:
space:
mode:
authoraliaspider2014-10-28 22:45:14 +0100
committeraliaspider2014-10-28 22:45:14 +0100
commitf518934e3b664d0cf9535a391d6572300958d3bf (patch)
treeac24ebff344f7e8163a3b14ed228e3a26aa6915f /source/snes9x.h
parenta9c9cc3e30e50e8d90e355aa7ea84ae846e0c9bc (diff)
downloadsnes9x2005-f518934e3b664d0cf9535a391d6572300958d3bf.tar.gz
snes9x2005-f518934e3b664d0cf9535a391d6572300958d3bf.tar.bz2
snes9x2005-f518934e3b664d0cf9535a391d6572300958d3bf.zip
cleanups (cont.)
Diffstat (limited to 'source/snes9x.h')
-rw-r--r--source/snes9x.h31
1 files changed, 1 insertions, 30 deletions
diff --git a/source/snes9x.h b/source/snes9x.h
index 40b33b9..72780cf 100644
--- a/source/snes9x.h
+++ b/source/snes9x.h
@@ -327,15 +327,6 @@ struct SSettings{
/* Sound options */
uint32 SoundPlaybackRate;
bool8 TraceSoundDSP;
-#ifndef FOREVER_STEREO
- bool8 Stereo;
-#endif
-#ifndef FOREVER_FORWARD_STEREO
- bool8 ReverseStereo;
-#endif
-#ifndef FOREVER_16_BIT_SOUND
- bool8 SixteenBitSound;
-#endif
bool8 EightBitConsoleSound; // due to caching, this needs S9xSetEightBitConsoleSound()
int SoundBufferSize;
int SoundMixInterval;
@@ -368,18 +359,8 @@ struct SSettings{
bool8 DisableRangeTimeOver; /* XXX: unused */
/* Others */
- bool8 NetPlay;
- bool8 NetPlayServer;
- char ServerName [128];
- int Port;
- bool8 GlideEnable;
- bool8 OpenGLEnable;
- int32 AutoSaveDelay; /* Time in seconds before S-RAM auto-saved if modified. */
bool8 ApplyCheats;
- bool8 TurboMode;
- uint32 TurboSkipFrames;
- uint32 AutoMaxSkipFrames;
-
+
/* Fixes for individual games */
bool8 StarfoxHack;
bool8 WinterGold;
@@ -425,16 +406,6 @@ void S9xMessage (int type, int number, const char *message);
void S9xLoadSDD1Data ();
END_EXTERN_C
-enum {
- PAUSE_NETPLAY_CONNECT = (1 << 0),
- PAUSE_TOGGLE_FULL_SCREEN = (1 << 1),
- PAUSE_EXIT = (1 << 2),
- PAUSE_MENU = (1 << 3),
- PAUSE_INACTIVE_WINDOW = (1 << 4),
- PAUSE_WINDOW_ICONISED = (1 << 5),
- PAUSE_RESTORE_GUI = (1 << 6),
- PAUSE_FREEZE_FILE = (1 << 7)
-};
void S9xSetPause (uint32 mask);
void S9xClearPause (uint32 mask);