diff options
author | 2025-04-14 11:31:53 +0200 | |
---|---|---|
committer | 2025-04-27 22:23:20 +0200 | |
commit | d0f1c15a0f6df2dd51a754cb46e6175b7079c8f2 (patch) | |
tree | be35c94340442af08c316a8679089ee68e119fac /src/zexall/main.cpp | |
parent | ec636faeba5c5841c5a4a35b7c9dc2f06a00f538 (diff) |
New sound infrastructure.
Should be added soon:
- mute
- speaker/microphone resampling
To be added a little later:
- compression
- reverb
Needs to be added by someone else:
- coreaudio
- direct
- portaudio
- xaudio2
- js
Diffstat (limited to 'src/zexall/main.cpp')
-rw-r--r-- | src/zexall/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zexall/main.cpp b/src/zexall/main.cpp index 3ff60ced4f2..cfb19bc6909 100644 --- a/src/zexall/main.cpp +++ b/src/zexall/main.cpp @@ -106,7 +106,7 @@ void emulator_info::periodic_check() { } bool emulator_info::frame_hook() { return false; } -void emulator_info::sound_hook() { } +void emulator_info::sound_hook(const std::map<std::string, std::vector<std::pair<const float *, int>>> &) { } void emulator_info::layout_script_cb(layout_file &file, const char *script) { } |