[Scummvm-git-logs] scummvm master -> 78354f11d622e96756abfba7f4c663fc1d33ee55
Strangerke
noreply at scummvm.org
Sat Jan 25 07:24:00 UTC 2025
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:
78354f11d6 GOT: Fix typo in variable name
Commit: 78354f11d622e96756abfba7f4c663fc1d33ee55
https://github.com/scummvm/scummvm/commit/78354f11d622e96756abfba7f4c663fc1d33ee55
Author: Strangerke (arnaud.boutonne at gmail.com)
Date: 2025-01-25T08:23:51+01:00
Commit Message:
GOT: Fix typo in variable name
Changed paths:
engines/got/sound.cpp
diff --git a/engines/got/sound.cpp b/engines/got/sound.cpp
index b5a3d184547..74c1e1aa23f 100644
--- a/engines/got/sound.cpp
+++ b/engines/got/sound.cpp
@@ -67,8 +67,8 @@ void Sound::setupBoss(const int num) {
// Information concerning boss sounds is stored in _digiSounds 16 to 18, but the data is stored in _bossSounds
for (int i = 0; i < 3; ++i) {
- Common::String ressourceName = Common::String::format("BOSSV%d%d", num, i + 1);
- File f(ressourceName);
+ Common::String resourceName = Common::String::format("BOSSV%d%d", num, i + 1);
+ File f(resourceName);
const int size = f.size();
_bossSounds[i] = new byte[size];
_digiSounds[16 + i]._length = size;
More information about the Scummvm-git-logs
mailing list