Skip to content

Commit 185ba01

Browse files
committed
Fix config reader
1 parent 8204359 commit 185ba01

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

skFreeze/gameConfig.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ GameConfig::GameConfig()
2121

2222
ss >> key >> equalSign >> value;
2323

24-
std::stringstream ss2;
25-
ss2 << key << equalSign << value;
26-
OutputDebugString(ss2.str().c_str());
27-
2824
configContainer.insert({ key, value });
2925
}
3026

skScreen/gameConfig.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ GameConfig::GameConfig()
1616
std::string key;
1717
std::string equalSign;
1818
std::string value;
19+
20+
ss >> key >> equalSign >> value;
1921

2022
configContainer.insert({ key, value });
2123
}

0 commit comments

Comments
 (0)