mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
try to fix build when the compiler is stricter
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user