Skip to content

Commit

Permalink
Split challenge mouse-over tip into multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
past-due committed Apr 5, 2019
1 parent 131e4f7 commit 2cc667c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/challenge.cpp
Expand Up @@ -323,7 +323,7 @@ bool addChallenges()
ASSERT(challenge.contains("map"), "Invalid challenge file %s - no map", sPath);
map = challenge.value("map", "BAD MAP").toWzString();
difficulty = challenge.value("difficulty", "BAD DIFFICULTY").toWzString();
description = map + ", " + difficulty + ", " + highscore + ". " + challenge.value("description", "").toWzString();
description = map + ", " + difficulty + ", " + highscore + ".\n" + challenge.value("description", "").toWzString();

button = (W_BUTTON *)widgGetFromID(psRequestScreen, CHALLENGE_ENTRY_START + slotCount);

Expand Down

0 comments on commit 2cc667c

Please sign in to comment.