aboutsummaryrefslogtreecommitdiff
path: root/src/games/tetris/Tetris.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/games/tetris/Tetris.cpp')
-rw-r--r--src/games/tetris/Tetris.cpp10
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;
}