File diff r24596:eddf98238034 → r24597:afde5721a3b6
src/openttd.cpp
Show inline comments
 
@@ -290,8 +290,8 @@ static void ParseResolution(Dimension *r
 
		return;
 
	}
 

	
 
	res->width  = max(strtoul(s, nullptr, 0), 64UL);
 
	res->height = max(strtoul(t + 1, nullptr, 0), 64UL);
 
	res->width  = std::max(strtoul(s, nullptr, 0), 64UL);
 
	res->height = std::max(strtoul(t + 1, nullptr, 0), 64UL);
 
}