mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
SoundStream: change Start/Stop to Init/SetRunning/destruct
This commit is contained in:
@ -15,9 +15,9 @@
|
||||
class CubebStream final : public SoundStream
|
||||
{
|
||||
public:
|
||||
bool Start() override;
|
||||
void Stop() override;
|
||||
void SetRunning(bool running) override;
|
||||
~CubebStream() override;
|
||||
bool Init() override;
|
||||
bool SetRunning(bool running) override;
|
||||
void SetVolume(int) override;
|
||||
|
||||
private:
|
||||
|
Reference in New Issue
Block a user