[Scummvm-cvs-logs] scummvm master -> f92f9f9faf34d378939761e211649572ec72cd25

lordhoto lordhoto at gmail.com
Tue Jun 19 01:50:56 CEST 2012


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:
f92f9f9faf PS2: Small formatting fixes.


Commit: f92f9f9faf34d378939761e211649572ec72cd25
    https://github.com/scummvm/scummvm/commit/f92f9f9faf34d378939761e211649572ec72cd25
Author: Johannes Schickel (lordhoto at scummvm.org)
Date: 2012-06-18T16:48:21-07:00

Commit Message:
PS2: Small formatting fixes.

Changed paths:
    backends/platform/ps2/ps2time.cpp



diff --git a/backends/platform/ps2/ps2time.cpp b/backends/platform/ps2/ps2time.cpp
index 124c154..1cddd23 100644
--- a/backends/platform/ps2/ps2time.cpp
+++ b/backends/platform/ps2/ps2time.cpp
@@ -107,9 +107,9 @@ void OSystem_PS2::readRtcTime(void) {
 
 // Tomohiko Sakamoto's 1993 algorithm for any Gregorian date
 static int dayOfWeek(int y, int m, int d) {
-	static const int t[] = {0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4};
+	static const int t[] = { 0, 3, 2, 5, 0, 3, 5, 1, 4, 6, 2, 4 };
 	y -= m < 3;
-	return (y + y/4 - y/100 + y/400 + t[m-1] + d) % 7;
+	return (y + y / 4 - y / 100 + y / 400 + t[m - 1] + d) % 7;
 }
 
 void OSystem_PS2::getTimeAndDate(TimeDate &t) const {






More information about the Scummvm-git-logs mailing list