[Scummvm-git-logs] scummvm master -> 7fc70bb82f929b77d7ca58a3bed43e0d4ab714e3

whoozle noreply at scummvm.org
Sat Mar 7 13:58:38 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:
7fc70bb82f PHOENIXVR: Fix invalid year in description


Commit: 7fc70bb82f929b77d7ca58a3bed43e0d4ab714e3
    https://github.com/scummvm/scummvm/commit/7fc70bb82f929b77d7ca58a3bed43e0d4ab714e3
Author: Vladimir Menshakov (vladimir.menshakov at gmail.com)
Date: 2026-03-07T13:58:21Z

Commit Message:
PHOENIXVR: Fix invalid year in description

Changed paths:
    engines/phoenixvr/phoenixvr.cpp


diff --git a/engines/phoenixvr/phoenixvr.cpp b/engines/phoenixvr/phoenixvr.cpp
index f8e1e5eefaf..92d52889b7d 100644
--- a/engines/phoenixvr/phoenixvr.cpp
+++ b/engines/phoenixvr/phoenixvr.cpp
@@ -1140,7 +1140,7 @@ Common::Error PhoenixVREngine::saveGameStream(Common::WriteStream *slot, bool is
 	TimeDate td = {};
 	g_system->getTimeAndDate(td);
 	// Saturday 03 01 2026[\x00]23 h 17
-	state.info = Common::String::format("%s %02d %02d %04d%c%02d h %02d", wday[td.tm_wday], td.tm_mday, td.tm_mon + 1, td.tm_year, 0, td.tm_hour, td.tm_min);
+	state.info = Common::String::format("%s %02d %02d %04d%c%02d h %02d", wday[td.tm_wday], td.tm_mday, td.tm_mon + 1, td.tm_year + 1900, 0, td.tm_hour, td.tm_min);
 
 	state.thumbWidth = _thumbnail.w;
 	state.thumbHeight = _thumbnail.h;




More information about the Scummvm-git-logs mailing list