diff options
author | Arisotura <thetotalworm@gmail.com> | 2021-08-08 14:27:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-08 14:27:57 +0200 |
commit | 2df6b4fdc3439ea42b043d38f859efb5d4bd4466 (patch) | |
tree | 300323e14a13447039cb216dc8a097fe9f4bffd1 /src/frontend/qt_sdl/PlatformConfig.cpp | |
parent | b28a9e4d24b42a59de5e333c99aec6dcc30435f0 (diff) |
Audio interpolation (#1176)
add audio interpolation (emulation improvement)
Diffstat (limited to 'src/frontend/qt_sdl/PlatformConfig.cpp')
-rw-r--r-- | src/frontend/qt_sdl/PlatformConfig.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/frontend/qt_sdl/PlatformConfig.cpp b/src/frontend/qt_sdl/PlatformConfig.cpp index faf9284..40f55ba 100644 --- a/src/frontend/qt_sdl/PlatformConfig.cpp +++ b/src/frontend/qt_sdl/PlatformConfig.cpp @@ -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} }; |