[Scummvm-git-logs] scummvm master -> 95580950535c574ded36fa224cfa0ac37936938b
sluicebox
noreply at scummvm.org
Mon Jun 6 21:56:01 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:
9558095053 SCI: Remove trailing array commas
Commit: 95580950535c574ded36fa224cfa0ac37936938b
https://github.com/scummvm/scummvm/commit/95580950535c574ded36fa224cfa0ac37936938b
Author: sluicebox (22204938+sluicebox at users.noreply.github.com)
Date: 2022-06-06T17:55:50-04:00
Commit Message:
SCI: Remove trailing array commas
Changed paths:
engines/sci/engine/script_patches.cpp
diff --git a/engines/sci/engine/script_patches.cpp b/engines/sci/engine/script_patches.cpp
index 0b34762a1cf..c5ed05eb4e4 100644
--- a/engines/sci/engine/script_patches.cpp
+++ b/engines/sci/engine/script_patches.cpp
@@ -558,7 +558,7 @@ static const uint16 sci0EarlySpeedTestSignature[] = {
0x35, 0x01, // ldi 01
0x1a, // eq?
0x30, // bnt [ skip initialization ]
- SIG_END,
+ SIG_END
};
static const uint16 sci0EarlySpeedTestPatch[] = {
@@ -575,7 +575,7 @@ static const uint16 sci01SpeedTestGlobalSignature[] = {
0x36, // push
0x35, 0x01, // ldi 01
0x1a, // eq?
- SIG_END, // bnt [ skip initialization ]
+ SIG_END // bnt [ skip initialization ]
};
static const uint16 sci01SpeedTestGlobalPatch[] = {
@@ -592,7 +592,7 @@ static const uint16 sci01SpeedTestLocalSignature[] = {
0x36, // push
0x35, 0x01, // ldi 01
0x1a, // eq?
- SIG_END, // bnt [ skip initialization ]
+ SIG_END // bnt [ skip initialization ]
};
static const uint16 sci01SpeedTestLocalPatch[] = {
@@ -612,7 +612,7 @@ static const uint16 sci11SpeedTestSignature[] = {
0x83, 0x01, // lal 01
0x04, // sub [ GetTime() - start-time ]
0xa3, 0x00, // sal 00 [ local0 = test-duration ]
- SIG_END,
+ SIG_END
};
static const uint16 sci11SpeedTestPatch[] = {
More information about the Scummvm-git-logs
mailing list