Skip to content

Commit c5a9081

Browse files
committed
fix name error in tetris_application.cpp
1 parent 5aaa354 commit c5a9081

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tetris_application.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ void TetrisApplication::try_load_settings() {
148148
}
149149
m_settings = nlohmann::json::parse(settings_string.value());
150150
#else
151-
m_settings = nlohmann::json::parse(settings_file);
151+
m_settings = nlohmann::json::parse(settings_filename);
152152
#endif
153153
spdlog::info("settings loaded");
154154
} catch (...) {

0 commit comments

Comments
 (0)