diff options
author | D G Turner | 2018-09-15 01:16:38 +0100 |
---|---|---|
committer | D G Turner | 2018-09-15 01:16:38 +0100 |
commit | 07b83997b77e16a57ade66abcab05547b787fa45 (patch) | |
tree | 3d5b241430c6708964e4c2806a36c2d2bff5c199 | |
parent | 32c8ea021c313ba3582af6c230f94b7ca76e692e (diff) | |
download | scummvm-rg350-07b83997b77e16a57ade66abcab05547b787fa45.tar.gz scummvm-rg350-07b83997b77e16a57ade66abcab05547b787fa45.tar.bz2 scummvm-rg350-07b83997b77e16a57ade66abcab05547b787fa45.zip |
GOB: Correct build breakage for DS/PSP2 from previous commit.
-rw-r--r-- | engines/gob/resources.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/resources.cpp b/engines/gob/resources.cpp index 6eedab1e60..9755bf9db1 100644 --- a/engines/gob/resources.cpp +++ b/engines/gob/resources.cpp @@ -123,7 +123,7 @@ Resources::EXTResourceTable::~EXTResourceTable() { Resources::TOTTextTable::TOTTextTable() { needFree = false; itemsCount = 0; - data = (byte)0; + data = NULL; size = 0; items = NULL; } |