This is an automated email from the git hooks/post-receive script. smcv pushed a commit to annotated tag 1.42d in repository iortcw.
commit 6edd6e19ee318efd06aa53c6b832aa42316768dd Author: MAN-AT-ARMS <[email protected]> Date: Tue Jun 30 20:45:31 2015 -0400 All: Make cinematic times be int like CL_ScaledMilliseconds --- MP/code/client/cl_cin.c | 4 ++-- SP/code/client/cl_cin.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MP/code/client/cl_cin.c b/MP/code/client/cl_cin.c index 57deecc..69c318d 100644 --- a/MP/code/client/cl_cin.c +++ b/MP/code/client/cl_cin.c @@ -107,8 +107,8 @@ typedef struct { qboolean looping, holdAtEnd, dirty, alterGameState, silent, shader; fileHandle_t iFile; e_status status; - unsigned int startTime; - unsigned int lastTime; + int startTime; + int lastTime; long tfps; long RoQPlayed; long ROQSize; diff --git a/SP/code/client/cl_cin.c b/SP/code/client/cl_cin.c index 74d3970..eb77358 100644 --- a/SP/code/client/cl_cin.c +++ b/SP/code/client/cl_cin.c @@ -112,8 +112,8 @@ typedef struct { qboolean looping, holdAtEnd, dirty, alterGameState, silent, shader, letterBox, sound; fileHandle_t iFile; e_status status; - unsigned int startTime; - unsigned int lastTime; + int startTime; + int lastTime; long tfps; long RoQPlayed; long ROQSize; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/iortcw.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

