diff options
| author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2022-09-04 05:41:06 +0100 |
|---|---|---|
| committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2022-09-04 05:41:06 +0100 |
| commit | 2129d040a509754839b82b1ff6d387cb4f84f168 (patch) | |
| tree | dcbc4edfb20e70e4c22566193c802ea2f4b9979e /src/audio_core/audio_core.cpp | |
| parent | ea9ff71725113b8dbb159917c57aa536bba0cb53 (diff) | |
Don't stall with nvdec
Diffstat (limited to 'src/audio_core/audio_core.cpp')
| -rw-r--r-- | src/audio_core/audio_core.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/audio_core/audio_core.cpp b/src/audio_core/audio_core.cpp index cf7e763e6..9feec1829 100644 --- a/src/audio_core/audio_core.cpp +++ b/src/audio_core/audio_core.cpp @@ -57,4 +57,12 @@ void AudioCore::PauseSinks(const bool pausing) const { } } +void AudioCore::SetNVDECActive(bool active) { + nvdec_active = active; +} + +bool AudioCore::IsNVDECActive() const { + return nvdec_active; +} + } // namespace AudioCore |
