mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
AudioCommon: Add missing override specifiers
Also removes unnecessary virtual keywords.
This commit is contained in:
parent
5213d85118
commit
07d4dbe657
9 changed files with 42 additions and 45 deletions
|
@ -13,8 +13,8 @@ class OpenSLESStream final : public SoundStream
|
|||
{
|
||||
#ifdef ANDROID
|
||||
public:
|
||||
virtual bool Start();
|
||||
virtual void Stop();
|
||||
bool Start() override;
|
||||
void Stop() override;
|
||||
static bool isValid() { return true; }
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue