Actually fix the race condition
This commit is contained in:
parent
5f5646c850
commit
c1ac39f058
4 changed files with 6 additions and 5 deletions
|
@ -5,6 +5,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <array>
|
||||
#include <atomic>
|
||||
#include <string>
|
||||
#include <unordered_map>
|
||||
#include "common/common_types.h"
|
||||
|
@ -148,7 +149,7 @@ struct Values {
|
|||
float bg_blue;
|
||||
|
||||
bool toggle_3d;
|
||||
u8 factor_3d;
|
||||
std::atomic<u8> factor_3d;
|
||||
|
||||
// Audio
|
||||
bool enable_dsp_lle;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue