diff options
author | Simon Howard | 2005-08-04 01:14:37 +0000 |
---|---|---|
committer | Simon Howard | 2005-08-04 01:14:37 +0000 |
commit | 80ee1ed1bab906c3c305184cd4720bfa9b623e5d (patch) | |
tree | 9d8f73f044bac8f9b45ea0381e47bddab335a64d /src/i_system.c | |
parent | 636dc9bb6ba074a9c863d4d9d0a3e3b704b20f4e (diff) | |
download | chocolate-doom-80ee1ed1bab906c3c305184cd4720bfa9b623e5d.tar.gz chocolate-doom-80ee1ed1bab906c3c305184cd4720bfa9b623e5d.tar.bz2 chocolate-doom-80ee1ed1bab906c3c305184cd4720bfa9b623e5d.zip |
Begin/EndRead now in i_video.c
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 34
Diffstat (limited to 'src/i_system.c')
-rw-r--r-- | src/i_system.c | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/i_system.c b/src/i_system.c index 5c7fe232..370bba7f 100644 --- a/src/i_system.c +++ b/src/i_system.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: i_system.c 28 2005-07-25 20:41:59Z fraggle $ +// $Id: i_system.c 34 2005-08-04 01:14:37Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -22,6 +22,9 @@ // 02111-1307, USA. // // $Log$ +// Revision 1.6 2005/08/04 01:14:37 fraggle +// Begin/EndRead now in i_video.c +// // Revision 1.5 2005/07/25 20:41:59 fraggle // Port timer code to SDL // @@ -43,7 +46,7 @@ //----------------------------------------------------------------------------- static const char -rcsid[] = "$Id: i_system.c 28 2005-07-25 20:41:59Z fraggle $"; +rcsid[] = "$Id: i_system.c 34 2005-08-04 01:14:37Z fraggle $"; #include <stdlib.h> @@ -154,16 +157,6 @@ void I_WaitVBL(int count) SDL_Delay((count * 1000) / 70); } -void I_BeginRead(void) -{ - // display "reading" disk -} - -void I_EndRead(void) -{ - // remove "reading" disk -} - byte* I_AllocLow(int length) { byte* mem; |