SDL: fixed compilation error without -DCREATE_AVI introduced in r1239
This commit is contained in:
parent
35c026f234
commit
ae53895a13
|
@ -303,7 +303,9 @@ InitConfig()
|
|||
config->addOption(prefix + "IncreaseSpeed", SDLK_EQUALS);
|
||||
config->addOption(prefix + "FrameAdvance", SDLK_BACKSLASH);
|
||||
config->addOption(prefix + "InputDisplay", SDLK_i);
|
||||
#ifdef CREATE_AVI
|
||||
config->addOption(prefix + "MuteCapture", SDLK_DELETE);
|
||||
#endif
|
||||
config->addOption(prefix + "Quit", SDLK_ESCAPE);
|
||||
//config->addOption(prefix + "Power", 0);
|
||||
|
||||
|
|
|
@ -168,7 +168,9 @@ int movieToggleFrameDisplayKey;
|
|||
int lagCounterDisplayKey;
|
||||
int SubtitleDisplayKey;
|
||||
int InputDisplayKey;
|
||||
#ifdef CREATE_AVI
|
||||
int MuteCaptureKey;
|
||||
#endif
|
||||
|
||||
// this function loads the sdl hotkeys from the config file into the
|
||||
// global scope. this elimates the need for accessing the config file
|
||||
|
@ -206,7 +208,9 @@ void setHotKeys()
|
|||
g_config->getOption("SDL.Hotkeys.MovieToggleFrameDisplay", &movieToggleFrameDisplayKey);
|
||||
g_config->getOption("SDL.Hotkeys.SubtitleDisplay", &SubtitleDisplayKey);
|
||||
g_config->getOption("SDL.Hotkeys.InputDisplay", &InputDisplayKey);
|
||||
#ifdef CREATE_AVI
|
||||
g_config->getOption("SDL.Hotkeys.MuteCapture", &MuteCaptureKey);
|
||||
#endif
|
||||
/*
|
||||
config->addOption(prefix + "FrameAdvance", SDLK_BACKSLASH);
|
||||
config->addOption(prefix + "Power", 0);
|
||||
|
@ -419,10 +423,12 @@ KeyboardCommands()
|
|||
g_config->setOption("SDL.InputDisplay", input_display);
|
||||
}
|
||||
|
||||
#ifdef CREATE_AVI
|
||||
if(_keyonly(MuteCaptureKey)) {
|
||||
extern int mutecapture;
|
||||
mutecapture ^= 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
if(_keyonly(pauseKey)) {
|
||||
FCEUI_ToggleEmulationPause();
|
||||
|
|
Loading…
Reference in New Issue