From 0577dde1dfb7345f46f4727e03608ef863ae0081 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Fri, 11 Mar 2016 14:59:54 -0800 Subject: [PATCH] herp derp --- Runtime/GuiSys/CRasterFont.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/GuiSys/CRasterFont.hpp b/Runtime/GuiSys/CRasterFont.hpp index 2c44b1589..bec3529cd 100644 --- a/Runtime/GuiSys/CRasterFont.hpp +++ b/Runtime/GuiSys/CRasterFont.hpp @@ -63,7 +63,7 @@ public: static s32 KernLookup(const std::vector& kernTable, s32 kernStart, s32 chr) { /* FIXME: I think this is mostly wrong */ - const auto iter = kernTable.cbegin() + kernStart; + auto iter = kernTable.cbegin() + kernStart; for (;iter != kernTable.cend(); ++iter) { const CKernPair& pair = *iter;