REMOVED remains of soundLowPass option
This commit is contained in:
parent
e1e218c554
commit
f5eabba1c7
|
@ -74,7 +74,6 @@ u32 soundNextPosition = 0;
|
||||||
bool soundOffFlag = false;
|
bool soundOffFlag = false;
|
||||||
bool soundPaused = true;
|
bool soundPaused = true;
|
||||||
|
|
||||||
bool soundLowPass = false;
|
|
||||||
bool soundReverse = false;
|
bool soundReverse = false;
|
||||||
|
|
||||||
void interp_rate() { /* empty for now */ }
|
void interp_rate() { /* empty for now */ }
|
||||||
|
|
|
@ -59,7 +59,6 @@ extern int soundInterpolation; // 1 if PCM should have low-pass filtering
|
||||||
extern float soundFiltering; // 0.0 = none, 1.0 = max (only if soundInterpolation!=0)
|
extern float soundFiltering; // 0.0 = none, 1.0 = max (only if soundInterpolation!=0)
|
||||||
|
|
||||||
// Not used anymore
|
// Not used anymore
|
||||||
extern bool soundLowPass;
|
|
||||||
extern bool soundReverse;
|
extern bool soundReverse;
|
||||||
|
|
||||||
// Unknown purpose
|
// Unknown purpose
|
||||||
|
|
|
@ -43,7 +43,6 @@ extern int soundTicks;
|
||||||
extern int SOUND_CLOCK_TICKS;
|
extern int SOUND_CLOCK_TICKS;
|
||||||
extern u32 soundNextPosition;
|
extern u32 soundNextPosition;
|
||||||
|
|
||||||
extern bool soundLowPass;
|
|
||||||
extern bool soundReverse;
|
extern bool soundReverse;
|
||||||
extern bool soundOffFlag;
|
extern bool soundOffFlag;
|
||||||
|
|
||||||
|
|
|
@ -151,7 +151,6 @@ struct {
|
||||||
{ "OptionsSound11Khz", ID_OPTIONS_SOUND_11KHZ },
|
{ "OptionsSound11Khz", ID_OPTIONS_SOUND_11KHZ },
|
||||||
{ "OptionsSound22Khz", ID_OPTIONS_SOUND_22KHZ },
|
{ "OptionsSound22Khz", ID_OPTIONS_SOUND_22KHZ },
|
||||||
{ "OptionsSound44Khz", ID_OPTIONS_SOUND_44KHZ },
|
{ "OptionsSound44Khz", ID_OPTIONS_SOUND_44KHZ },
|
||||||
{ "OptionsSoundLowPassFilter", ID_OPTIONS_SOUND_LOWPASSFILTER },
|
|
||||||
{ "OptionsSoundReverseStereo", ID_OPTIONS_SOUND_REVERSESTEREO },
|
{ "OptionsSoundReverseStereo", ID_OPTIONS_SOUND_REVERSESTEREO },
|
||||||
{ "OptionsSoundVolume1x", ID_OPTIONS_SOUND_VOLUME_1X },
|
{ "OptionsSoundVolume1x", ID_OPTIONS_SOUND_VOLUME_1X },
|
||||||
{ "OptionsSoundVolume2x", ID_OPTIONS_SOUND_VOLUME_2X },
|
{ "OptionsSoundVolume2x", ID_OPTIONS_SOUND_VOLUME_2X },
|
||||||
|
|
|
@ -206,8 +206,6 @@ BEGIN_MESSAGE_MAP(MainWnd, CWnd)
|
||||||
ON_UPDATE_COMMAND_UI(ID_OPTIONS_EMULATOR_BMPFORMAT, OnUpdateOptionsEmulatorBmpformat)
|
ON_UPDATE_COMMAND_UI(ID_OPTIONS_EMULATOR_BMPFORMAT, OnUpdateOptionsEmulatorBmpformat)
|
||||||
ON_COMMAND(ID_OPTIONS_SOUND_MUTE, OnOptionsSoundMute)
|
ON_COMMAND(ID_OPTIONS_SOUND_MUTE, OnOptionsSoundMute)
|
||||||
ON_UPDATE_COMMAND_UI(ID_OPTIONS_SOUND_MUTE, OnUpdateOptionsSoundMute)
|
ON_UPDATE_COMMAND_UI(ID_OPTIONS_SOUND_MUTE, OnUpdateOptionsSoundMute)
|
||||||
ON_COMMAND(ID_OPTIONS_SOUND_LOWPASSFILTER, OnOptionsSoundLowpassfilter)
|
|
||||||
ON_UPDATE_COMMAND_UI(ID_OPTIONS_SOUND_LOWPASSFILTER, OnUpdateOptionsSoundLowpassfilter)
|
|
||||||
ON_COMMAND(ID_OPTIONS_SOUND_REVERSESTEREO, OnOptionsSoundReversestereo)
|
ON_COMMAND(ID_OPTIONS_SOUND_REVERSESTEREO, OnOptionsSoundReversestereo)
|
||||||
ON_UPDATE_COMMAND_UI(ID_OPTIONS_SOUND_REVERSESTEREO, OnUpdateOptionsSoundReversestereo)
|
ON_UPDATE_COMMAND_UI(ID_OPTIONS_SOUND_REVERSESTEREO, OnUpdateOptionsSoundReversestereo)
|
||||||
ON_COMMAND(ID_OPTIONS_SOUND_11KHZ, OnOptionsSound11khz)
|
ON_COMMAND(ID_OPTIONS_SOUND_11KHZ, OnOptionsSound11khz)
|
||||||
|
|
|
@ -207,8 +207,6 @@ public:
|
||||||
afx_msg void OnUpdateOptionsEmulatorBmpformat(CCmdUI* pCmdUI);
|
afx_msg void OnUpdateOptionsEmulatorBmpformat(CCmdUI* pCmdUI);
|
||||||
afx_msg void OnOptionsSoundMute();
|
afx_msg void OnOptionsSoundMute();
|
||||||
afx_msg void OnUpdateOptionsSoundMute(CCmdUI* pCmdUI);
|
afx_msg void OnUpdateOptionsSoundMute(CCmdUI* pCmdUI);
|
||||||
afx_msg void OnOptionsSoundLowpassfilter();
|
|
||||||
afx_msg void OnUpdateOptionsSoundLowpassfilter(CCmdUI* pCmdUI);
|
|
||||||
afx_msg void OnOptionsSoundReversestereo();
|
afx_msg void OnOptionsSoundReversestereo();
|
||||||
afx_msg void OnUpdateOptionsSoundReversestereo(CCmdUI* pCmdUI);
|
afx_msg void OnUpdateOptionsSoundReversestereo(CCmdUI* pCmdUI);
|
||||||
afx_msg void OnOptionsSound11khz();
|
afx_msg void OnOptionsSound11khz();
|
||||||
|
|
|
@ -832,16 +832,6 @@ void MainWnd::OnAudioEffects()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWnd::OnOptionsSoundLowpassfilter()
|
|
||||||
{
|
|
||||||
soundLowPass = !soundLowPass;
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWnd::OnUpdateOptionsSoundLowpassfilter(CCmdUI* pCmdUI)
|
|
||||||
{
|
|
||||||
pCmdUI->SetCheck(soundLowPass);
|
|
||||||
}
|
|
||||||
|
|
||||||
void MainWnd::OnOptionsSoundReversestereo()
|
void MainWnd::OnOptionsSoundReversestereo()
|
||||||
{
|
{
|
||||||
soundReverse = !soundReverse;
|
soundReverse = !soundReverse;
|
||||||
|
|
|
@ -1591,8 +1591,6 @@ void VBA::loadSettings()
|
||||||
|
|
||||||
soundQuality = regQueryDwordValue("soundQuality", 1);
|
soundQuality = regQueryDwordValue("soundQuality", 1);
|
||||||
|
|
||||||
soundLowPass = regQueryDwordValue("soundLowPass", 0) ? true : false;
|
|
||||||
|
|
||||||
soundReverse = regQueryDwordValue("soundReverse", 0) ? true : false;
|
soundReverse = regQueryDwordValue("soundReverse", 0) ? true : false;
|
||||||
|
|
||||||
soundVolume = regQueryDwordValue("soundVolume", 0);
|
soundVolume = regQueryDwordValue("soundVolume", 0);
|
||||||
|
@ -2589,8 +2587,6 @@ void VBA::saveSettings()
|
||||||
|
|
||||||
regSetDwordValue("soundQuality", soundQuality);
|
regSetDwordValue("soundQuality", soundQuality);
|
||||||
|
|
||||||
regSetDwordValue("soundLowPass", soundLowPass);
|
|
||||||
|
|
||||||
regSetDwordValue("soundReverse", soundReverse);
|
regSetDwordValue("soundReverse", soundReverse);
|
||||||
|
|
||||||
regSetDwordValue("soundVolume", soundVolume);
|
regSetDwordValue("soundVolume", soundVolume);
|
||||||
|
|
|
@ -684,7 +684,6 @@
|
||||||
#define ID_TOOLS_CUSTOMIZE 40145
|
#define ID_TOOLS_CUSTOMIZE 40145
|
||||||
#define ID_TOOLS_TILEVIEWER 40146
|
#define ID_TOOLS_TILEVIEWER 40146
|
||||||
#define ID_OPTIONS_GAMEBOY_COLORS 40147
|
#define ID_OPTIONS_GAMEBOY_COLORS 40147
|
||||||
#define ID_OPTIONS_SOUND_LOWPASSFILTER 40149
|
|
||||||
#define ID_OPTIONS_SOUND_REVERSESTEREO 40150
|
#define ID_OPTIONS_SOUND_REVERSESTEREO 40150
|
||||||
#define ID_TOOLS_DISASSEMBLE 40151
|
#define ID_TOOLS_DISASSEMBLE 40151
|
||||||
#define ID_TOOLS_DEBUG_GDB 40152
|
#define ID_TOOLS_DEBUG_GDB 40152
|
||||||
|
|
Loading…
Reference in New Issue