commit 3e227377302ea03665d2cdc6b6e9b6544b35e38e parent 2c29db3ab0a826c82a4685942ff7fa1f4b7bf733 Author: Michael Savage <mikejsavage@gmail.com> Date: Tue Dec 27 16:05:17 +0200 Remove unused variable Diffstat:
heightmap.cc | | | 2 | -- |
diff --git a/heightmap.cc b/heightmap.cc @@ -6,8 +6,6 @@ #include "log.h" #include "memory_arena.h" -const float SLOPE = 0.3; - static float lerp( float a, float b, float t ) { return a * ( 1 - t ) + b * t; }