diff options
| author | 2023-12-23 13:58:09 -0500 | |
|---|---|---|
| committer | 2023-12-23 15:36:44 -0500 | |
| commit | f34d3d7e84a1396d4d4f07ec1434b06b1f39bb8a (patch) | |
| tree | e04a08b7ecf57be7aa7a9d2801f09eddd5d19018 /src/audio_core/device | |
| parent | Merge pull request #12412 from ameerj/gl-query-prims (diff) | |
| download | yuzu-f34d3d7e84a1396d4d4f07ec1434b06b1f39bb8a.tar.gz yuzu-f34d3d7e84a1396d4d4f07ec1434b06b1f39bb8a.tar.xz yuzu-f34d3d7e84a1396d4d4f07ec1434b06b1f39bb8a.zip | |
core_timing: remove user data value
Diffstat (limited to 'src/audio_core/device')
| -rw-r--r-- | src/audio_core/device/device_session.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/audio_core/device/device_session.cpp b/src/audio_core/device/device_session.cpp index c41d9d1ea..ee42ae529 100644 --- a/src/audio_core/device/device_session.cpp +++ b/src/audio_core/device/device_session.cpp | |||
| @@ -18,9 +18,7 @@ constexpr auto INCREMENT_TIME{5ms}; | |||
| 18 | DeviceSession::DeviceSession(Core::System& system_) | 18 | DeviceSession::DeviceSession(Core::System& system_) |
| 19 | : system{system_}, thread_event{Core::Timing::CreateEvent( | 19 | : system{system_}, thread_event{Core::Timing::CreateEvent( |
| 20 | "AudioOutSampleTick", | 20 | "AudioOutSampleTick", |
| 21 | [this](std::uintptr_t, s64 time, std::chrono::nanoseconds) { | 21 | [this](s64 time, std::chrono::nanoseconds) { return ThreadFunc(); })} {} |
| 22 | return ThreadFunc(); | ||
| 23 | })} {} | ||
| 24 | 22 | ||
| 25 | DeviceSession::~DeviceSession() { | 23 | DeviceSession::~DeviceSession() { |
| 26 | Finalize(); | 24 | Finalize(); |