mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-14 10:46:58 +02:00
fix for crashes on TLS due to openorbis being W E I R D
This commit is contained in:
parent
87c56d6ba7
commit
8c7f7b72e5
3 changed files with 30 additions and 3 deletions
|
|
@ -196,7 +196,14 @@ struct Values {
|
|||
linkage, false, "dump_audio_commands", Category::Audio, Specialization::Default, false};
|
||||
|
||||
// Core
|
||||
SwitchableSetting<bool> use_multi_core{linkage, true, "use_multi_core", Category::Core};
|
||||
SwitchableSetting<bool> use_multi_core{linkage,
|
||||
#ifdef __OPENORBIS__
|
||||
// Re-enable once proper TLS support is added
|
||||
false,
|
||||
#else
|
||||
true,
|
||||
#endif
|
||||
"use_multi_core", Category::Core};
|
||||
SwitchableSetting<MemoryLayout, true> memory_layout_mode{linkage,
|
||||
MemoryLayout::Memory_4Gb,
|
||||
"memory_layout_mode",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue