diff --git a/skFreeze/gameConfig.cpp b/skFreeze/gameConfig.cpp index 856bfe0..223c26e 100644 --- a/skFreeze/gameConfig.cpp +++ b/skFreeze/gameConfig.cpp @@ -21,10 +21,6 @@ GameConfig::GameConfig() ss >> key >> equalSign >> value; - std::stringstream ss2; - ss2 << key << equalSign << value; - OutputDebugString(ss2.str().c_str()); - configContainer.insert({ key, value }); } diff --git a/skScreen/gameConfig.cpp b/skScreen/gameConfig.cpp index 77ab0f7..c57f8e0 100644 --- a/skScreen/gameConfig.cpp +++ b/skScreen/gameConfig.cpp @@ -16,6 +16,8 @@ GameConfig::GameConfig() std::string key; std::string equalSign; std::string value; + + ss >> key >> equalSign >> value; configContainer.insert({ key, value }); }