[Scummvm-git-logs] scummvm master -> db76f68ea6825390cd901ca39888fee5f397db84

digitall noreply at scummvm.org
Sun Jul 3 19:18:18 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:
db76f68ea6 CHEWY: Fix Incorrect Argument Ordering For Memset Function Usage


Commit: db76f68ea6825390cd901ca39888fee5f397db84
    https://github.com/scummvm/scummvm/commit/db76f68ea6825390cd901ca39888fee5f397db84
Author: D G Turner (digitall at scummvm.org)
Date: 2022-07-03T20:17:38+01:00

Commit Message:
CHEWY: Fix Incorrect Argument Ordering For Memset Function Usage

Changed paths:
    engines/chewy/text.cpp


diff --git a/engines/chewy/text.cpp b/engines/chewy/text.cpp
index 7352cc15b9c..c690be040db 100644
--- a/engines/chewy/text.cpp
+++ b/engines/chewy/text.cpp
@@ -30,7 +30,7 @@
 namespace Chewy {
 
 Text::Text() : Resource("atds.tap") {
-	memset(_hotspotStrings, sizeof(_hotspotStrings), 0);
+	memset(_hotspotStrings, 0, sizeof(_hotspotStrings));
 
 	Common::File f;
 




More information about the Scummvm-git-logs mailing list