[Scummvm-git-logs] scummvm master -> 56a4ac1c03d71d943d0f9f423e155f677bb30b2b
a-yyg
76591232+a-yyg at users.noreply.github.com
Fri Aug 13 20:16:31 UTC 2021
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:
56a4ac1c03 SAGA2: Remove SSI save stub warnings
Commit: 56a4ac1c03d71d943d0f9f423e155f677bb30b2b
https://github.com/scummvm/scummvm/commit/56a4ac1c03d71d943d0f9f423e155f677bb30b2b
Author: a/ (yuri.kgpps at gmail.com)
Date: 2021-08-14T05:15:33+09:00
Commit Message:
SAGA2: Remove SSI save stub warnings
Changed paths:
engines/saga2/spellio.cpp
diff --git a/engines/saga2/spellio.cpp b/engines/saga2/spellio.cpp
index fdba0a0295..6b171bd7e8 100644
--- a/engines/saga2/spellio.cpp
+++ b/engines/saga2/spellio.cpp
@@ -300,7 +300,6 @@ StorageSpellInstance::StorageSpellInstance() : implementAge(0), effect(0), dProt
void StorageSpellInstance::read(Common::InSaveFile *in) {
implementAge = in->readSint32LE();
effect = in->readUint16LE();
- warning("StorageSpellInstance::read: Check SpellID size");
dProto = (SpellID)in->readByte();
caster = in->readUint16LE();
target.read(in);
@@ -315,7 +314,6 @@ void StorageSpellInstance::read(Common::InSaveFile *in) {
void StorageSpellInstance::write(Common::MemoryWriteStreamDynamic *out) {
out->writeSint32LE(implementAge);
out->writeUint16LE(effect);
- warning("StorageSpellInstance::write: Check SpellID size");
out->writeByte(dProto);
out->writeUint16LE(caster);
target.write(out);
More information about the Scummvm-git-logs
mailing list