[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:
Gliniak 2024-12-30 16:41:47 +01:00
parent 1ba30c519c
commit c3301d9281
1 changed files with 6 additions and 1 deletions

View File

@ -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: