diff options
author | D G Turner | 2018-08-09 11:09:01 +0100 |
---|---|---|
committer | D G Turner | 2018-08-09 11:09:01 +0100 |
commit | c5f2d0c1a70f0ce16e0d5bb2bda1a0ee900aff46 (patch) | |
tree | 7dc3c555dea48d078d9cdc600c6b17c7c2ccd138 | |
parent | d4f0392e575c0e8ef2c752a9a0892749f059ad1a (diff) | |
download | scummvm-rg350-c5f2d0c1a70f0ce16e0d5bb2bda1a0ee900aff46.tar.gz scummvm-rg350-c5f2d0c1a70f0ce16e0d5bb2bda1a0ee900aff46.tar.bz2 scummvm-rg350-c5f2d0c1a70f0ce16e0d5bb2bda1a0ee900aff46.zip |
STARTREK: Further Fix For Compilation.
-rw-r--r-- | engines/startrek/text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/startrek/text.cpp b/engines/startrek/text.cpp index 833b9e4080..c30532e182 100644 --- a/engines/startrek/text.cpp +++ b/engines/startrek/text.cpp @@ -1,4 +1,4 @@ -#include "common/c++11-compat.h" // nullptr definition +#include "common/scummsys.h" // In this file, the TYPO tag is used when a typo is fixed in a piece of text, or when // text is changed to match the audio. @@ -6,7 +6,7 @@ namespace StarTrek { extern const char *const g_gameStrings[] = { - nullptr, + NULL, "", "Dialog error", "Animation error", |