diff options
author | Einar Johan Trøan Sømåen | 2012-06-01 13:51:06 +0200 |
---|---|---|
committer | Einar Johan Trøan Sømåen | 2012-06-02 13:07:29 +0200 |
commit | 79f86732b8dd17264768b32ceefcb79b1ee422b5 (patch) | |
tree | d62e0cd13b121e2f6dd3e4913e16e94daa30f177 /engines/wintermute/scriptables/ScScript.cpp | |
parent | 2f02bec21fcbffc18964443c2f59a59ebe50f724 (diff) | |
download | scummvm-rg350-79f86732b8dd17264768b32ceefcb79b1ee422b5.tar.gz scummvm-rg350-79f86732b8dd17264768b32ceefcb79b1ee422b5.tar.bz2 scummvm-rg350-79f86732b8dd17264768b32ceefcb79b1ee422b5.zip |
WINTERMUTE: Fix Windows build under MSVC2010
Diffstat (limited to 'engines/wintermute/scriptables/ScScript.cpp')
-rw-r--r-- | engines/wintermute/scriptables/ScScript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/scriptables/ScScript.cpp b/engines/wintermute/scriptables/ScScript.cpp index b3eca0f346..0b1f81bd0e 100644 --- a/engines/wintermute/scriptables/ScScript.cpp +++ b/engines/wintermute/scriptables/ScScript.cpp @@ -442,7 +442,7 @@ HRESULT CScScript::ExecuteInstruction() { HRESULT ret = S_OK;
uint32 dw;
- const char *str;
+ const char *str = NULL;
//CScValue* op = new CScValue(Game);
_operand->Cleanup();
|