Skip to content

Commit

Permalink
remove not needed virtual from DX source
Browse files Browse the repository at this point in the history
  • Loading branch information
AlwinEsch committed Sep 25, 2019
1 parent f1c580a commit 28f0e29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Main_dx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ class CVisualizationWaveForm
{
public:
CVisualizationWaveForm();
virtual ~CVisualizationWaveForm();
~CVisualizationWaveForm() override;

virtual ADDON_STATUS Create() override;
virtual void Render() override;
virtual void AudioData(const float* audioData, int audioDataLength, float *freqData, int freqDataLength) override;
ADDON_STATUS Create() override;
void Render() override;
void AudioData(const float* audioData, int audioDataLength, float *freqData, int freqDataLength) override;

private:
bool init_renderer_objs();
Expand Down

0 comments on commit 28f0e29

Please sign in to comment.