[Scummvm-git-logs] scummvm master -> 88e5591ac2fd6951bffb6e340c90d753e9b92c5d
bluegr
noreply at scummvm.org
Fri Jan 2 23:25:04 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
88e5591ac2 TOT: Fix typos
Commit: 88e5591ac2fd6951bffb6e340c90d753e9b92c5d
https://github.com/scummvm/scummvm/commit/88e5591ac2fd6951bffb6e340c90d753e9b92c5d
Author: its full of stars (raziel- at users.noreply.github.com)
Date: 2026-01-03T01:25:00+02:00
Commit Message:
TOT: Fix typos
Changed paths:
engines/tot/anims.cpp
engines/tot/anims.h
engines/tot/dialog.cpp
engines/tot/tot.cpp
diff --git a/engines/tot/anims.cpp b/engines/tot/anims.cpp
index 195fb2342fb..81cd3d5a50c 100644
--- a/engines/tot/anims.cpp
+++ b/engines/tot/anims.cpp
@@ -826,7 +826,7 @@ static FliHeader readHeader(Common::File *file) {
headerfile.magic = file->readSint16LE();
headerfile.frames = file->readSint16LE();
headerfile.width = file->readSint16LE();
- headerfile.heigth = file->readSint16LE();
+ headerfile.height = file->readSint16LE();
headerfile.depth = file->readSint16LE();
headerfile.flags = file->readSint16LE();
headerfile.speed = file->readSint32LE();
diff --git a/engines/tot/anims.h b/engines/tot/anims.h
index 0feefb4f794..77a8140d9a4 100644
--- a/engines/tot/anims.h
+++ b/engines/tot/anims.h
@@ -37,7 +37,7 @@ struct FliHeader {
uint magic, // format id
frames, // number of animation frames
width, // anim width
- heigth, // anim height
+ height, // anim height
depth, // 8 bits per pixel
flags;
int32 speed; // time delay between frames
diff --git a/engines/tot/dialog.cpp b/engines/tot/dialog.cpp
index 359c60fd5f9..f633d507848 100644
--- a/engines/tot/dialog.cpp
+++ b/engines/tot/dialog.cpp
@@ -557,7 +557,7 @@ void talkToSceneObject() {
}
/**
- * Loads talking animation of main adn secondary character
+ * Loads talking animation of main and secondary character
*/
void loadTalkAnimations() {
Common::File animFile;
diff --git a/engines/tot/tot.cpp b/engines/tot/tot.cpp
index 6a50302331f..0f455cf26e9 100644
--- a/engines/tot/tot.cpp
+++ b/engines/tot/tot.cpp
@@ -987,7 +987,7 @@ void TotEngine::initializeScreenFile() {
while (!roomFile.eos()) {
if (fileSize - roomFile.pos() >= kRoomRegSize) {
roomFile.read(roomData + kRoomRegSize * roomCount, kRoomRegSize);
- // This one doesnt work for some reason:
+ // This one doesn't work for some reason:
// rooms->writeStream(roomFile.readStream(roomRegSize), roomRegSize);
roomFile.skip(kRoomRegSize * 7);
roomCount++;
More information about the Scummvm-git-logs
mailing list