mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-19 16:27:02 +02:00
make fiber bigger, build.sh
This commit is contained in:
parent
7857887f98
commit
690b440281
4 changed files with 4 additions and 2 deletions
|
|
@ -16,7 +16,7 @@
|
|||
namespace Common {
|
||||
|
||||
#ifdef __OPENORBIS__
|
||||
constexpr size_t DEFAULT_STACK_SIZE = 32 * 4096;
|
||||
constexpr size_t DEFAULT_STACK_SIZE = 64 * 4096;
|
||||
#else
|
||||
constexpr size_t DEFAULT_STACK_SIZE = 512 * 4096;
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -367,6 +367,8 @@ int main(int argc, char** argv) {
|
|||
|
||||
// Apply the command line arguments
|
||||
system.ApplySettings();
|
||||
Settings::values.renderer_backend.SetValue(Settings::RendererBackend::Null);
|
||||
Common::Log::SetGlobalFilter(Common::Log::Filter(Common::Log::Level::Trace));
|
||||
|
||||
std::unique_ptr<EmuWindow_SDL2> emu_window;
|
||||
switch (Settings::values.renderer_backend.GetValue()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue