From 183da6fb918c65f52d39a8b135b9878127fa9c19 Mon Sep 17 00:00:00 2001 From: Spoike Date: Fri, 27 Aug 2004 00:45:58 +0000 Subject: [PATCH] Fix for q2 cinematics. dur... git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@63 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/clq2_cin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/client/clq2_cin.c b/engine/client/clq2_cin.c index 0d1441720..8e74b34a7 100644 --- a/engine/client/clq2_cin.c +++ b/engine/client/clq2_cin.c @@ -497,7 +497,7 @@ qboolean CIN_PlayCinematic (char *arg) // Com_Error (ERR_DROP, "Cinematic %s not found.\n", name); CIN_FinishCinematic (); cin.cinematictime = 0; // done - return true; + return false; } SCR_EndLoadingPlaque (); @@ -528,9 +528,9 @@ qboolean CIN_PlayCinematic (char *arg) cin.cinematicframe = 0; cin.pic = CIN_ReadNextFrame (); - cin.cinematictime = Sys_DoubleTime ()*1000; + cin.cinematictime = Sys_DoubleTime ()*1000+0.001; - return false; + return true; } #endif \ No newline at end of file