From 295d60e4cb217f73c28e514f1e05127d6892e0ac Mon Sep 17 00:00:00 2001 From: RSDuck Date: Thu, 11 Feb 2021 19:11:18 +0100 Subject: try to fix build when the compiler is stricter --- src/GPU3D_Soft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/GPU3D_Soft.cpp b/src/GPU3D_Soft.cpp index de66b6b..22f7f01 100644 --- a/src/GPU3D_Soft.cpp +++ b/src/GPU3D_Soft.cpp @@ -49,7 +49,7 @@ void SoftRenderer::SetupRenderThread() if (!RenderThreadRunning) { RenderThreadRunning = true; - RenderThread = Platform::Thread_Create(std::bind(&RenderThreadFunc, this)); + RenderThread = Platform::Thread_Create(std::bind(&SoftRenderer::RenderThreadFunc, this)); } // otherwise more than one frame can be queued up at once -- cgit v1.2.3