From 3659d87349f85f6076e34fd1a2a56e1dcdf0efe6 Mon Sep 17 00:00:00 2001 From: Hirek Date: Thu, 12 Jun 2025 00:02:06 +0200 Subject: [PATCH] Add cruel way to disable python threaded upload when using nvrenderer --- application.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application.cpp b/application.cpp index 888867e5..e11adc9b 100644 --- a/application.cpp +++ b/application.cpp @@ -296,6 +296,10 @@ eu07_application::init( int Argc, char *Argv[] ) { WriteLog( settingspipe.str() ); } + // cruel way to prevent crashes because of threaded upload from python + if (Global.NvRenderer) + Global.python_threadedupload = false; + WriteLog( "// startup" ); if( ( result = init_glfw() ) != 0 ) {