[Scummvm-git-logs] scummvm master -> ccb80030e176623ff2dd1e6c3dd8ad1ef319c44c
kelmer44
noreply at scummvm.org
Mon Dec 1 08:46:52 UTC 2025
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:
ccb80030e1 TOT: Fixes incorrect initialization in InventoryEntries
Commit: ccb80030e176623ff2dd1e6c3dd8ad1ef319c44c
https://github.com/scummvm/scummvm/commit/ccb80030e176623ff2dd1e6c3dd8ad1ef319c44c
Author: kelmer (kelmer at gmail.com)
Date: 2025-12-01T09:46:44+01:00
Commit Message:
TOT: Fixes incorrect initialization in InventoryEntries
Changed paths:
engines/tot/types.h
diff --git a/engines/tot/types.h b/engines/tot/types.h
index 87f8a794562..1659cffed7c 100644
--- a/engines/tot/types.h
+++ b/engines/tot/types.h
@@ -107,8 +107,8 @@ struct SecondaryAnim {
};
struct InventoryEntry {
- uint16 bitmapIndex = -1;
- uint16 code = -1;
+ int16 bitmapIndex = -1;
+ int16 code = -1;
Common::String objectName = "";
};
More information about the Scummvm-git-logs
mailing list