vgm_visualizer.cpp: C++14's non-inline constexpr variables are problematic, part 2020 (nw)

This commit is contained in:
AJR 2020-03-30 17:27:59 -04:00
parent 752c4fb8db
commit 73c1c3400f

View File

@ -17,6 +17,8 @@
#include <cmath>
constexpr int vgmviz_device::SCREEN_HEIGHT;
constexpr float lerp(float a, float b, float f)
{
return (b - a) * f + a;