mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-24 22:59:58 -06:00
Audio interpolation (#1176)
add audio interpolation (emulation improvement)
This commit is contained in:
@ -51,10 +51,14 @@ public:
|
||||
currentDlg = nullptr;
|
||||
}
|
||||
|
||||
signals:
|
||||
void updateAudioSettings();
|
||||
|
||||
private slots:
|
||||
void on_AudioSettingsDialog_accepted();
|
||||
void on_AudioSettingsDialog_rejected();
|
||||
|
||||
void on_cbInterpolation_currentIndexChanged(int idx);
|
||||
void on_slVolume_valueChanged(int val);
|
||||
void onChangeMicMode(int mode);
|
||||
void on_btnMicWavBrowse_clicked();
|
||||
@ -62,6 +66,7 @@ private slots:
|
||||
private:
|
||||
Ui::AudioSettingsDialog* ui;
|
||||
|
||||
int oldInterp;
|
||||
int oldVolume;
|
||||
QButtonGroup* grpMicMode;
|
||||
};
|
||||
|
Reference in New Issue
Block a user