[Base] Fixed issue with initialization deadlock on Proton
For whatever reason Proton doesn't like it when Xenia is compiled with 2022 MSVC
This commit is contained in:
parent
1ba30c519c
commit
c3301d9281
|
@ -38,7 +38,12 @@ using WaitItem = TimerQueueWaitItem;
|
|||
condition_variable::wait_until) but now builds
|
||||
|
||||
*/
|
||||
using WaitStrat = dp::blocking_wait_strategy;
|
||||
|
||||
/*
|
||||
edit2: (30.12.2024) After uplifting version of MSVC compiler Xenia cannot be
|
||||
correctly initialized if you're using proton.
|
||||
*/
|
||||
using WaitStrat = dp::spin_wait_strategy;
|
||||
|
||||
class TimerQueue {
|
||||
public:
|
||||
|
|
Loading…
Reference in New Issue