From 39a569bd3538257712c5638816216ca915fcfe73 Mon Sep 17 00:00:00 2001 From: Jaklyy <102590697+Jaklyy@users.noreply.github.com> Date: Fri, 19 Apr 2024 08:00:29 -0400 Subject: [PATCH] Revert "temp hack cuz lazyy" This reverts commit 668c493bf429051a85c9a6eea84064188394a376. --- src/GPU3D_Soft.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/GPU3D_Soft.cpp b/src/GPU3D_Soft.cpp index d3b64347..da6acbc0 100644 --- a/src/GPU3D_Soft.cpp +++ b/src/GPU3D_Soft.cpp @@ -97,7 +97,7 @@ void SoftRenderer::EnableRenderThread() } SoftRenderer::SoftRenderer(bool threaded) noexcept - : Renderer3D(false), Accuracy(threaded) + : Renderer3D(false), Threaded(threaded) { Sema_RenderStart = Platform::Semaphore_Create(); Sema_RenderDone = Platform::Semaphore_Create(); @@ -106,7 +106,6 @@ SoftRenderer::SoftRenderer(bool threaded) noexcept RenderThreadRunning = false; RenderThreadRendering = false; RenderThread = nullptr; - Threaded = true; } SoftRenderer::~SoftRenderer()