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

lephilousophe noreply at scummvm.org
Sun Jun 30 20:28:45 UTC 2024


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:
c712fb8af9 COMMON: FORMATS: Fix build


Commit: c712fb8af9b7d2b6019bcde8562f39a4a61332fa
    https://github.com/scummvm/scummvm/commit/c712fb8af9b7d2b6019bcde8562f39a4a61332fa
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-06-30T22:28:17+02:00

Commit Message:
COMMON: FORMATS: Fix build

Changed paths:
    common/formats/quicktime.cpp


diff --git a/common/formats/quicktime.cpp b/common/formats/quicktime.cpp
index 53089afe5f1..b1ea9014ca3 100644
--- a/common/formats/quicktime.cpp
+++ b/common/formats/quicktime.cpp
@@ -1288,8 +1288,8 @@ String QuickTimeParser::PanoStringTable::getString(int32 offset) const {
 	if (offset < 0)
 		return String();
 
-	int32_t str_start = offset + 1;
-	int32_t str_length = strings[offset];
+	int32 str_start = offset + 1;
+	int32 str_length = strings[offset];
 
 	return strings.substr(str_start, str_length);
 }




More information about the Scummvm-git-logs mailing list