From: <pa...@us...> - 2003-10-04 21:53:13
|
Update of /cvsroot/fuse-emulator/fuse In directory sc8-pr-cvs1:/tmp/cvs-serv11261 Modified Files: tape.c tape.h Log Message: Make tape and tape_playing static variables. Index: tape.c =================================================================== RCS file: /cvsroot/fuse-emulator/fuse/tape.c,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -d -r1.93 -r1.94 *** tape.c 19 Jul 2003 09:17:44 -0000 1.93 --- tape.c 4 Oct 2003 21:53:08 -0000 1.94 *************** *** 51,58 **** /* The current tape */ ! libspectrum_tape *tape; /* Is the emulated tape deck playing? */ ! int tape_playing; /* Is there a high input to the EAR socket? */ --- 51,58 ---- /* The current tape */ ! static libspectrum_tape *tape; /* Is the emulated tape deck playing? */ ! static int tape_playing; /* Is there a high input to the EAR socket? */ Index: tape.h =================================================================== RCS file: /cvsroot/fuse-emulator/fuse/tape.h,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** tape.h 11 Jul 2003 11:03:25 -0000 1.18 --- tape.h 4 Oct 2003 21:53:09 -0000 1.19 *************** *** 56,60 **** int tape_free_block_list( char ***list, size_t n ); - extern int tape_playing; extern int tape_microphone; --- 56,59 ---- |