mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Fix for q2 cinematics. dur...
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@63 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
9b59991ab3
commit
183da6fb91
1 changed files with 3 additions and 3 deletions
|
@ -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
|
Loading…
Reference in a new issue