try to fix build when the compiler is stricter
This commit is contained in:
parent
f1e0816c1a
commit
295d60e4cb
|
@ -49,7 +49,7 @@ void SoftRenderer::SetupRenderThread()
|
||||||
if (!RenderThreadRunning)
|
if (!RenderThreadRunning)
|
||||||
{
|
{
|
||||||
RenderThreadRunning = true;
|
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
|
// otherwise more than one frame can be queued up at once
|
||||||
|
|
Loading…
Reference in New Issue