aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/dbase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/dbase.cpp')
-rw-r--r--engines/gob/dbase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/dbase.cpp b/engines/gob/dbase.cpp
index 3aee136187..12c382dbcb 100644
--- a/engines/gob/dbase.cpp
+++ b/engines/gob/dbase.cpp
@@ -51,7 +51,7 @@ bool dBase::load(Common::SeekableReadStream &stream) {
_hasMemo = (_version & 0x80) != 0;
_lastUpdate.tm_year = stream.readByte();
- _lastUpdate.tm_mon = stream.readByte();
+ _lastUpdate.tm_mon = stream.readByte() - 1;
_lastUpdate.tm_mday = stream.readByte();
_lastUpdate.tm_hour = 0;
_lastUpdate.tm_min = 0;