mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-30 09:15:38 +00:00
Apply clang-format to the previous commit
This commit is contained in:
parent
ca48b778c3
commit
95999afefd
1 changed files with 1 additions and 3 deletions
|
@ -220,9 +220,7 @@ namespace LuaUtil
|
|||
util["remap"] = [](double value, double min, double max, double newMin, double newMax) {
|
||||
return newMin + (value - min) * (newMax - newMin) / (max - min);
|
||||
};
|
||||
util["round"] = [](double value) {
|
||||
return round(value);
|
||||
};
|
||||
util["round"] = [](double value) { return round(value); };
|
||||
|
||||
if (lua["bit32"] != sol::nil)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue