AudioCommon: rename isValid() to IsValid()

This commit is contained in:
Tillmann Karras
2021-08-08 00:23:58 +01:00
parent b6d8c111bc
commit eda2035874
10 changed files with 20 additions and 20 deletions

View File

@ -16,7 +16,7 @@ public:
bool Init() override;
bool SetRunning(bool running) override { return true; }
void SetVolume(int volume) override;
static bool isValid() { return true; }
static bool IsValid() { return true; }
private:
std::thread thread;