1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-29 00:32:49 +00:00

Renamed variable to fix case issue

This commit is contained in:
florent.teppe 2022-08-21 09:18:08 +02:00
parent 166717d601
commit 25c1f0ca16

View File

@ -399,17 +399,17 @@ namespace Shader
void reloadTouchedShaders(ShaderManager& Manager, osgViewer::Viewer& viewer)
{
bool threadsRunningTostop = false;
bool threadsRunningToStop = false;
for (auto& [pathShaderToTest, shaderKeys]: mShaderFiles)
{
std::filesystem::file_time_type write_time = std::filesystem::last_write_time(pathShaderToTest);
if (write_time.time_since_epoch() > mLastAutoRecompileTime.time_since_epoch())
{
if (!threadsRunningTostop)
if (!threadsRunningToStop)
{
threadsRunningTostop = viewer.areThreadsRunning();
if (threadsRunningTostop)
threadsRunningToStop = viewer.areThreadsRunning();
if (threadsRunningToStop)
viewer.stopThreading();
}
@ -450,7 +450,7 @@ namespace Shader
}
}
}
if (threadsRunningTostop)
if (threadsRunningToStop)
viewer.startThreading();
mLastAutoRecompileTime = std::filesystem::file_time_type::clock::now();
}