aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/commands/seqcommand.cpp
diff options
context:
space:
mode:
authorĽubomír Remák2018-08-19 16:48:02 +0200
committerEugene Sandulenko2018-08-25 23:12:01 +0200
commit959f37dfe4f0d46a28217f85832af07b73e190c0 (patch)
tree5102f24126649feea45b338e9cb7d432c7183c92 /engines/mutationofjb/commands/seqcommand.cpp
parent561309eaa2fb2d5298567366068ac9daafc7c2f7 (diff)
downloadscummvm-rg350-959f37dfe4f0d46a28217f85832af07b73e190c0.tar.gz
scummvm-rg350-959f37dfe4f0d46a28217f85832af07b73e190c0.tar.bz2
scummvm-rg350-959f37dfe4f0d46a28217f85832af07b73e190c0.zip
MUTATIONOFJB: Don't mark internal strings as translatable.
Diffstat (limited to 'engines/mutationofjb/commands/seqcommand.cpp')
-rw-r--r--engines/mutationofjb/commands/seqcommand.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/mutationofjb/commands/seqcommand.cpp b/engines/mutationofjb/commands/seqcommand.cpp
index 4836d0357f..635698645a 100644
--- a/engines/mutationofjb/commands/seqcommand.cpp
+++ b/engines/mutationofjb/commands/seqcommand.cpp
@@ -21,13 +21,14 @@
*/
#include "mutationofjb/commands/seqcommand.h"
-#include "common/translation.h"
+
+#include "common/textconsole.h"
namespace MutationOfJB {
void SeqCommandParser::transition(ScriptParseContext &, Command *oldCommand, Command *newCommand, CommandParser *) {
if (!oldCommand || !newCommand) {
- warning(_("Unexpected empty command in transition"));
+ warning("Unexpected empty command in transition");
return;
}