Ludwig's 1st diff: Some 64bit fixes for x86_64. Also fixes Makefile build.
This commit is contained in:
parent
59cce31e75
commit
f46ede91fb
23 changed files with 150 additions and 84 deletions
|
@ -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) ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue