From f87249b8798c890d14cfd7c33dbea709fd0901c3 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Sat, 7 Mar 2015 23:14:55 +0100 Subject: [PATCH] Removing debug messages. --- loader.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/loader.cc b/loader.cc index 82ff424..273fe06 100644 --- a/loader.cc +++ b/loader.cc @@ -365,9 +365,7 @@ void Loader::load(std::string filePath, Level* level, std::string compositionsPa float offset = 0; errorCheck(flameOffset->QueryFloatText(&offset)); float flameHeight = queryFloat(xmlLight, "flameHeight"); - printf("loading: flameHeight: %2.2f\n", flameHeight); float flameWidth = queryFloat(xmlLight, "flameWidth"); - printf("loading: flameWidth: %2.2f\n", flameWidth); Light light = Light(lightPosition, lightColour, lightIntensity, offset, flameHeight, flameWidth); level->addLight(light); }