]> Shamusworld >> Repos - thunder/blobdiff - src/gui.h
Removed useless cruft, fixed off-by-one bug in screen render.
[thunder] / src / gui.h
old mode 100755 (executable)
new mode 100644 (file)
index 7193b73..9a17174
--- a/src/gui.h
+++ b/src/gui.h
@@ -1,15 +1,15 @@
 //
 // GUI.H
 //
-// by James L. Hammmons
-// (C) 1998, 2009 Underground Software
+// by James Hammmons
+// (C) 1998, 2014 Underground Software
 //
 
 #ifndef __GUI_H__
 #define __GUI_H__
 
-#include "types.h"
-#include "SDL.h"
+#include <stdint.h>
+#include <SDL2/SDL.h>
 
 // Message macros
 
@@ -44,7 +44,7 @@
 #define RESET     9
 #define EXIT      10
 
-void SpawnMsg(uint8);
+void SpawnMsg(uint8_t);
 void DrawText(void);
 void InitGUI(void);
 bool ShowGUI(void);
@@ -53,7 +53,7 @@ void SelectLeft(void);
 void SelectRight(void);
 void SelectUp(void);
 void SelectDown(void);
-uint8 UserSelectedSomething(void);
+uint8_t UserSelectedSomething(void);
 void SetRefreshRate(bool);
 void ActivateGUI(void);
 void DeactivateGUI(void);