From b70b339f52996e5e867e1aab3c7bafc364637226 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Tue, 22 Aug 2023 22:38:11 +0200 Subject: [PATCH] removed unused variable buf2 in mobile.cpp --- mobile.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/mobile.cpp b/mobile.cpp index 8cd88078..1d52684b 100644 --- a/mobile.cpp +++ b/mobile.cpp @@ -14,13 +14,11 @@ string buildScoreDescription() { time_t timer; timer = time(NULL); char buf[128]; strftime(buf, 128, "%c", localtime(&timer)); - char buf2[128]; s += XLAT("HyperRogue for Android"); s += " ( " VER "), http://www.roguetemple.com/z/hyper/\n"; s += XLAT("Date: %1 time: %2 s ", buf, getgametime_s()); s += XLAT("distance: %1\n", its(celldist(cwt.at))); - // s += buf2; if(cheater) s += XLAT("Cheats: ") + its(cheater) + "\n"; s += XLAT("Score: ") + its(gold());