diff options
author | Simon Howard | 2006-05-20 16:24:58 +0000 |
---|---|---|
committer | Simon Howard | 2006-05-20 16:24:58 +0000 |
commit | bb630087923d51ce190461e8aba044bff04249eb (patch) | |
tree | d9f530d4e201fd78e4ccc8743f1fa91abec090ea | |
parent | e00c1abb037c3ef1b5c51ed9983e5484f8bc4963 (diff) | |
download | chocolate-doom-bb630087923d51ce190461e8aba044bff04249eb.tar.gz chocolate-doom-bb630087923d51ce190461e8aba044bff04249eb.tar.bz2 chocolate-doom-bb630087923d51ce190461e8aba044bff04249eb.zip |
Make Translatekey static.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 489
-rw-r--r-- | src/i_video.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/i_video.c b/src/i_video.c index 09976afa..2e090c15 100644 --- a/src/i_video.c +++ b/src/i_video.c @@ -1,7 +1,7 @@ // Emacs style mode select -*- C++ -*- //----------------------------------------------------------------------------- // -// $Id: i_video.c 484 2006-05-19 20:01:59Z fraggle $ +// $Id: i_video.c 489 2006-05-20 16:24:58Z fraggle $ // // Copyright(C) 1993-1996 Id Software, Inc. // Copyright(C) 2005 Simon Howard @@ -175,7 +175,7 @@ //----------------------------------------------------------------------------- static const char -rcsid[] = "$Id: i_video.c 484 2006-05-19 20:01:59Z fraggle $"; +rcsid[] = "$Id: i_video.c 489 2006-05-20 16:24:58Z fraggle $"; #include <SDL.h> #include <ctype.h> @@ -350,7 +350,7 @@ static void LoadDiskImage(void) // Translates the SDL key // -int TranslateKey(SDL_keysym *sym) +static int TranslateKey(SDL_keysym *sym) { switch(sym->sym) { |