diff options
Diffstat (limited to 'script_v2.cpp')
-rw-r--r-- | script_v2.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/script_v2.cpp b/script_v2.cpp index 3687b6d9ee..7e38f04831 100644 --- a/script_v2.cpp +++ b/script_v2.cpp @@ -17,6 +17,9 @@ * * Change Log: * $Log$ + * Revision 1.3 2001/10/24 20:12:52 strigeus + * fixed some bugs related to string handling + * * Revision 1.2 2001/10/23 19:51:50 strigeus * recompile not needed when switching games * debugger skeleton implemented @@ -1557,7 +1560,7 @@ void Scumm::o6_verbOps() { if (a==0) { ptr = (byte*)""; } else { - ptr = getResourceAddress(7, a); + ptr = getStringAddress(a); } loadPtrToResource(8, slot, ptr); vs->type = 0; |