diff --git a/src/7.in_practice/3.2d_game/0.full_source/game_level.cpp b/src/7.in_practice/3.2d_game/0.full_source/game_level.cpp index a56c7d3..922d86c 100644 --- a/src/7.in_practice/3.2d_game/0.full_source/game_level.cpp +++ b/src/7.in_practice/3.2d_game/0.full_source/game_level.cpp @@ -28,7 +28,7 @@ void GameLevel::Load(const char *file, unsigned int levelWidth, unsigned int lev { std::istringstream sstream(line); std::vector row; - while (sstream >> tileCode) // read each word seperated by spaces + while (sstream >> tileCode) // read each word separated by spaces row.push_back(tileCode); tileData.push_back(row); }