mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-10 08:00:11 +00:00
removed unused variable buf2 in mobile.cpp
This commit is contained in:
parent
529e27ea2f
commit
b70b339f52
@ -14,13 +14,11 @@ string buildScoreDescription() {
|
|||||||
time_t timer;
|
time_t timer;
|
||||||
timer = time(NULL);
|
timer = time(NULL);
|
||||||
char buf[128]; strftime(buf, 128, "%c", localtime(&timer));
|
char buf[128]; strftime(buf, 128, "%c", localtime(&timer));
|
||||||
char buf2[128];
|
|
||||||
|
|
||||||
s += XLAT("HyperRogue for Android");
|
s += XLAT("HyperRogue for Android");
|
||||||
s += " ( " VER "), http://www.roguetemple.com/z/hyper/\n";
|
s += " ( " VER "), http://www.roguetemple.com/z/hyper/\n";
|
||||||
s += XLAT("Date: %1 time: %2 s ", buf, getgametime_s());
|
s += XLAT("Date: %1 time: %2 s ", buf, getgametime_s());
|
||||||
s += XLAT("distance: %1\n", its(celldist(cwt.at)));
|
s += XLAT("distance: %1\n", its(celldist(cwt.at)));
|
||||||
// s += buf2;
|
|
||||||
if(cheater) s += XLAT("Cheats: ") + its(cheater) + "\n";
|
if(cheater) s += XLAT("Cheats: ") + its(cheater) + "\n";
|
||||||
s += XLAT("Score: ") + its(gold());
|
s += XLAT("Score: ") + its(gold());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user