diff options
author | Travis Howell | 2004-07-19 01:58:08 +0000 |
---|---|---|
committer | Travis Howell | 2004-07-19 01:58:08 +0000 |
commit | 5ecfa56b5ee20f1a439fd50870d1e2e101981020 (patch) | |
tree | 316b9f2f7169eae226d800f34cca6fde0e0a35bb | |
parent | 904493bb760570c10738bdb73f28a531ff70af30 (diff) | |
download | scummvm-rg350-5ecfa56b5ee20f1a439fd50870d1e2e101981020.tar.gz scummvm-rg350-5ecfa56b5ee20f1a439fd50870d1e2e101981020.tar.bz2 scummvm-rg350-5ecfa56b5ee20f1a439fd50870d1e2e101981020.zip |
Rename object fields
svn-id: r14270
-rw-r--r-- | scumm/script_v8.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp index 945d3cd73c..de296680fc 100644 --- a/scumm/script_v8.cpp +++ b/scumm/script_v8.cpp @@ -1252,8 +1252,8 @@ void ScummEngine_v8::o8_kernelSetFunctions() { lock(rtFlObject, objidx); -// if (ObjData.field28 != 0) { -// ObjData.field32 = 1; +// if (ObjData.fl_object_index != 0) { +// ObjData.locked = 1; // } break; } @@ -1266,8 +1266,8 @@ void ScummEngine_v8::o8_kernelSetFunctions() { unlock(rtFlObject, objidx); -// if (ObjData.field28 != 0) { -// ObjData.field32 = 0; +// if (ObjData.fl_object_index != 0) { +// ObjData.locked = 0; // } break; } |