aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock
diff options
context:
space:
mode:
authorMatthew Hoops2015-06-27 01:29:53 -0400
committerMatthew Hoops2015-06-27 01:29:53 -0400
commitf6e59149211ae5762cc8f8048c43ee9b874f3ab1 (patch)
tree5ddf0ec9c7ca63a45e371fbce03db69136eae885 /engines/sherlock
parentab28816acd893794f766e2860ada1fab8a60d39f (diff)
downloadscummvm-rg350-f6e59149211ae5762cc8f8048c43ee9b874f3ab1.tar.gz
scummvm-rg350-f6e59149211ae5762cc8f8048c43ee9b874f3ab1.tar.bz2
scummvm-rg350-f6e59149211ae5762cc8f8048c43ee9b874f3ab1.zip
SHERLOCK: Fix use of preprocessor token concatenation
Diffstat (limited to 'engines/sherlock')
-rw-r--r--engines/sherlock/fixed_text.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/fixed_text.h b/engines/sherlock/fixed_text.h
index 32a5266392..6542301b2a 100644
--- a/engines/sherlock/fixed_text.h
+++ b/engines/sherlock/fixed_text.h
@@ -28,7 +28,7 @@
namespace Sherlock {
-#define FIXED(MSG) _vm->_fixedText->getText(kFixedText_##MSG##)
+#define FIXED(MSG) _vm->_fixedText->getText(kFixedText_##MSG)
enum FixedTextActionId {
kFixedTextAction_Invalid = -1,