diff options
author | Matthew Hoops | 2015-06-27 01:29:53 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-06-27 01:29:53 -0400 |
commit | f6e59149211ae5762cc8f8048c43ee9b874f3ab1 (patch) | |
tree | 5ddf0ec9c7ca63a45e371fbce03db69136eae885 | |
parent | ab28816acd893794f766e2860ada1fab8a60d39f (diff) | |
download | scummvm-rg350-f6e59149211ae5762cc8f8048c43ee9b874f3ab1.tar.gz scummvm-rg350-f6e59149211ae5762cc8f8048c43ee9b874f3ab1.tar.bz2 scummvm-rg350-f6e59149211ae5762cc8f8048c43ee9b874f3ab1.zip |
SHERLOCK: Fix use of preprocessor token concatenation
-rw-r--r-- | engines/sherlock/fixed_text.h | 2 |
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, |