[Scummvm-git-logs] scummvm master -> 2904fd0c255a61dd53f80245961940e7b643dab3

sev- noreply at scummvm.org
Wed Dec 7 22:00:05 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
2904fd0c25 DIRECTOR: Fix a couple copy-paste errors in chunks.lingo


Commit: 2904fd0c255a61dd53f80245961940e7b643dab3
    https://github.com/scummvm/scummvm/commit/2904fd0c255a61dd53f80245961940e7b643dab3
Author: eientei (einstein95 at users.noreply.github.com)
Date: 2022-12-07T23:00:01+01:00

Commit Message:
DIRECTOR: Fix a couple copy-paste errors in chunks.lingo

Changed paths:
    engines/director/lingo/tests/chunks.lingo


diff --git a/engines/director/lingo/tests/chunks.lingo b/engines/director/lingo/tests/chunks.lingo
index efcb46b4c8a..c307c2bc6a7 100644
--- a/engines/director/lingo/tests/chunks.lingo
+++ b/engines/director/lingo/tests/chunks.lingo
@@ -13,7 +13,7 @@ scummvmAssertEqual(char 2 of src, "b")
 scummvmAssertEqual(char 2 to 0 of src, "b")
 scummvmAssertEqual(char 2 to 4 of src, "bcd")
 scummvmAssertEqual(char 2 to 1000 of src, "bcdefghijklmnopqrstuvwxyz")
-scummvmAssertEqual(word 1000 of src, "")
+scummvmAssertEqual(char 1000 of src, "")
 
 set src = "    the quick brown fox    jumped over the lazy    dog"
 scummvmAssertEqual(word 2 of src, "quick")
@@ -38,7 +38,7 @@ scummvmAssertEqual(char 2 of field 1, "b")
 scummvmAssertEqual(char 2 to 0 of field 1, "b")
 scummvmAssertEqual(char 2 to 4 of field 1, "bcd")
 scummvmAssertEqual(char 2 to 1000 of field 1, "bcdefghijklmnopqrstuvwxyz")
-scummvmAssertEqual(word 1000 of field 1, "")
+scummvmAssertEqual(char 1000 of field 1, "")
 
 put "lorem ipsum dolor sit amet" into field 1
 set the foreColor of word 2 of field 1 to 10




More information about the Scummvm-git-logs mailing list