From 25855f327a0b2b1386a3fd8c568817bb7782cac2 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 14 Mar 2015 17:22:17 -0400 Subject: Added reverb to sound effects Also removed some extraneous parentheses --- src/entityfactory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/entityfactory.cpp') diff --git a/src/entityfactory.cpp b/src/entityfactory.cpp index 3fcb9ed..bf137e2 100644 --- a/src/entityfactory.cpp +++ b/src/entityfactory.cpp @@ -59,7 +59,7 @@ std::shared_ptr EntityFactory::createNamedEntity(const std::string name, { xmlChar* key = xmlNodeListGetString(doc, node->xmlChildrenNode, 1); data.hasPhysics = true; - sscanf((char*) key, "%d,%d", &(data.width), &(data.height)); + sscanf((char*) key, "%d,%d", &data.width, &data.height); xmlFree(key); } } -- cgit 1.4.1