diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-12-13 04:12:10 +0100 |
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-12-13 04:12:10 +0100 |
| commit | ebe4a92027aabc9c01caf0fbe791d22773abfe75 (patch) | |
| tree | e697282a885f54de7af22f36a58c1a684f67faf0 /src/games/tetris/Tetris.cpp | |
| parent | f24d302be51f8cd2f4c5796283ea9f9a3be8d922 (diff) | |
Diffstat (limited to 'src/games/tetris/Tetris.cpp')
| -rw-r--r-- | src/games/tetris/Tetris.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/games/tetris/Tetris.cpp b/src/games/tetris/Tetris.cpp index 0fee80a..7273cdd 100644 --- a/src/games/tetris/Tetris.cpp +++ b/src/games/tetris/Tetris.cpp @@ -13,13 +13,6 @@ #include <string> -static std::u32string -int32_to_u32string(int32_t value) -{ - std::string str = std::to_string(value); - return std::u32string(str.begin(), str.end()); -} - Tetris::Tetris() : m_font{s_dejavu_sans_mono_filepath, 22} @@ -172,9 +165,6 @@ Tetris::ReadHighscore() highscore_file_in >> highscore; highscore_file_in.close(); } - else { - SDL_LogInfo(0, "Tetris: cannot open %s for reading", s_tetris_highscore_path); - } return highscore; } |
