aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWohlstand <admin@wohlnet.ru>2025-05-25 16:25:30 +0300
committerWohlstand <admin@wohlnet.ru>2025-05-25 16:25:30 +0300
commit21f7817f334ebcd7240eaeee834b0366163f4a5e (patch)
tree940f42c23ffa1ac77c7455dcdffa56221e1000fb /src
parentf7c04e97cd07507d6993ab8e0e1d1aa8a642048e (diff)
downloadlibADLMIDI-21f7817f334ebcd7240eaeee834b0366163f4a5e.tar.gz
libADLMIDI-21f7817f334ebcd7240eaeee834b0366163f4a5e.tar.bz2
libADLMIDI-21f7817f334ebcd7240eaeee834b0366163f4a5e.zip
opl_chip_base.h: Fixed CLang warning
Diffstat (limited to 'src')
-rw-r--r--src/chips/opl_chip_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chips/opl_chip_base.h b/src/chips/opl_chip_base.h
index a79bdd5..718839a 100644
--- a/src/chips/opl_chip_base.h
+++ b/src/chips/opl_chip_base.h
@@ -122,7 +122,7 @@ private:
void nativeTick(int16_t *frame);
void setupResampler(uint32_t rate);
void resetResampler();
- void resampledGenerate(int32_t *output);
+ void resampledGenerate(int32_t *output) override;
#if defined(ADLMIDI_ENABLE_HQ_RESAMPLER)
VResampler *m_resampler;
#else