Removed more movie vars from where it doesn't belong.

This commit is contained in:
n-a-c-h
2005-03-15 15:46:03 +00:00
parent 0f05c9386f
commit 23562560f3
2 changed files with 4 additions and 8 deletions

View File

@@ -1046,12 +1046,6 @@ NEWSYM ReadInputDevice
.nopl24 .nopl24
ret ret
SECTION .data
NEWSYM txtmovieended, db 'MOVIE FINISHED.',0
SECTION .bss
NEWSYM StoreBuffer, resb 128*32
;******************************************************* ;*******************************************************
; Init 65816 Initializes the Registers ; Init 65816 Initializes the Registers
;******************************************************* ;*******************************************************

View File

@@ -850,7 +850,8 @@ MovieProcessing
extern unsigned int MsgCount, MessageOn; extern unsigned int MsgCount, MessageOn;
extern unsigned char MovieTemp, txtmovieended[15], MovieProcessing, *Msgptr; extern unsigned char MovieTemp, MovieProcessing, *Msgptr;
char *txtmovieended = "MOVIE FINISHED.";
static FILE *movfhandle; static FILE *movfhandle;
@@ -934,7 +935,8 @@ unsigned int bytemerger (unsigned char heaviest, unsigned char heavy, unsigned c
} }
unsigned int CReadHead, ReadHead, CFWriteStart = 64+30, CFWriteHead; unsigned int CReadHead, ReadHead, CFWriteStart = 64+30, CFWriteHead;
extern unsigned char BackState, CNetType, StoreBuffer[128*32]; extern unsigned char BackState, CNetType;
unsigned char StoreBuffer[128*32];
void Record() void Record()
{ {