mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-25 23:29:55 -06:00
Audio interpolation (#1176)
add audio interpolation (emulation improvement)
This commit is contained in:
@ -69,6 +69,7 @@ int DirectLAN;
|
||||
|
||||
int SavestateRelocSRAM;
|
||||
|
||||
int AudioInterp;
|
||||
int AudioVolume;
|
||||
int MicInputType;
|
||||
char MicWavPath[1024];
|
||||
@ -177,6 +178,7 @@ ConfigEntry PlatformConfigFile[] =
|
||||
|
||||
{"SavStaRelocSRAM", 0, &SavestateRelocSRAM, 0, NULL, 0},
|
||||
|
||||
{"AudioInterp", 0, &AudioInterp, 0, NULL, 0},
|
||||
{"AudioVolume", 0, &AudioVolume, 256, NULL, 0},
|
||||
{"MicInputType", 0, &MicInputType, 1, NULL, 0},
|
||||
{"MicWavPath", 1, MicWavPath, 0, "", 1023},
|
||||
@ -199,7 +201,7 @@ ConfigEntry PlatformConfigFile[] =
|
||||
{"MouseHide", 0, &MouseHide, 0, NULL, 0},
|
||||
{"MouseHideSeconds", 0, &MouseHideSeconds, 5, NULL, 0},
|
||||
{"PauseLostFocus", 0, &PauseLostFocus, 0, NULL, 0},
|
||||
|
||||
|
||||
{"", -1, NULL, 0, NULL, 0}
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user