foxygit / doom Log in
commit ceb3216d051c583afa1a975e1938dc0024ffb86d
Author:     Turo Lamminen <turotl@gmail.com>
AuthorDate: Sat May 5 17:32:59 2018 +0300
Commit:     Turo Lamminen <turotl@gmail.com>
CommitDate: Sat May 5 17:41:40 2018 +0300

    heretic: Mark some variables static
---
 src/heretic/f_finale.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/heretic/f_finale.c b/src/heretic/f_finale.c
index 0a926ef1..cadbbb75 100644
--- a/src/heretic/f_finale.c
+++ b/src/heretic/f_finale.c
@@ -24,16 +24,16 @@
 #include "s_sound.h"
 #include "v_video.h"

-int finalestage;                // 0 = text, 1 = art screen
-int finalecount;
+static int finalestage;                // 0 = text, 1 = art screen
+static int finalecount;

 #define TEXTSPEED       3
 #define TEXTWAIT        250

-const char *finaletext;
-const char *finaleflat;
+static const char *finaletext;
+static const char *finaleflat;

-int FontABaseLump;
+static int FontABaseLump;

 extern boolean automapactive;
 extern boolean viewactive;