From 2cbb0a8b22175da7a5b9b15f120f24def39c9abb Mon Sep 17 00:00:00 2001 From: zakk Date: Sat, 27 Aug 2005 02:24:00 +0000 Subject: Ludwig's 1st diff: Some 64bit fixes for x86_64. Also fixes Makefile build. git-svn-id: svn://svn.icculus.org/quake3/trunk@7 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/client/cl_cin.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'code/client/cl_cin.c') diff --git a/code/client/cl_cin.c b/code/client/cl_cin.c index f042d23..4f78965 100755 --- a/code/client/cl_cin.c +++ b/code/client/cl_cin.c @@ -1410,6 +1410,10 @@ e_status CIN_RunCinematic (int handle) if (handle < 0 || handle>= MAX_VIDEO_HANDLES || cinTable[handle].status == FMV_EOF) return FMV_EOF; +#warning disabled CIN_RunCinematic +Com_Printf("XXX: %s disabled\n", __FUNCTION__); +return FMV_EOF; + if (cin.currentHandle != handle) { currentHandle = handle; cin.currentHandle = currentHandle; @@ -1489,6 +1493,11 @@ int CIN_PlayCinematic( const char *arg, int x, int y, int w, int h, int systemBi Com_sprintf (name, sizeof(name), "%s", arg); } +#warning disabled CIN_PlayCinematic +Com_Printf("XXX: %s disabled, not playing %s\n", __FUNCTION__, name); +return -1; + + if (!(systemBits & CIN_system)) { for ( i = 0 ; i < MAX_VIDEO_HANDLES ; i++ ) { if (!strcmp(cinTable[i].fileName, name) ) { -- cgit v1.2.3