aboutsummaryrefslogtreecommitdiffstats
path: root/code/client/cl_cin.c
diff options
context:
space:
mode:
authorzakk <zakk@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-27 02:24:00 +0000
committerzakk <zakk@edf5b092-35ff-0310-97b2-ce42778d08ea>2005-08-27 02:24:00 +0000
commit2cbb0a8b22175da7a5b9b15f120f24def39c9abb (patch)
tree0a7591016e4770b5f9fd766c6c3c99c3820498bc /code/client/cl_cin.c
parent6bf20c78f5b69d40bcc4931df93d29198435ab67 (diff)
downloadioquake3-aero-2cbb0a8b22175da7a5b9b15f120f24def39c9abb.tar.gz
ioquake3-aero-2cbb0a8b22175da7a5b9b15f120f24def39c9abb.zip
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
Diffstat (limited to 'code/client/cl_cin.c')
-rwxr-xr-xcode/client/cl_cin.c9
1 files changed, 9 insertions, 0 deletions
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) ) {