From 41bebb262aa8f346ce6cdaefd854c9077ae84f97 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Sun, 17 Dec 2017 19:18:23 +0000 Subject: Implement pausing. --- src/game/text.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/game/text.cpp') diff --git a/src/game/text.cpp b/src/game/text.cpp index bdd68ed..00441f8 100644 --- a/src/game/text.cpp +++ b/src/game/text.cpp @@ -11,6 +11,12 @@ static const char *soldier_names[] = { static std::string get_english(index_t index) { switch (index) { + case PAUSED: + return "PAUSED"; + + case UNPAUSED: + return "UNPAUSED"; + case SAY_BLOCKED: return "Something is in my way."; @@ -58,6 +64,12 @@ static std::string get_english(index_t index) static std::string get_polish(index_t index) { switch (index) { + case PAUSED: + return "WSTRZYMANO"; + + case UNPAUSED: + return "WZNOWIONO"; + case SAY_BLOCKED: return "Coś jest na mojej drodze."; -- cgit