]> Shamusworld >> Repos - thunder/blobdiff - src/gui.h
Code cleanup.
[thunder] / src / gui.h
index 7193b7372bae9356e438cbf613f55fd52ced733d..663dd527dfe9c3429b940ce497c1bbcb17101010 100644 (file)
--- a/src/gui.h
+++ b/src/gui.h
@@ -1,14 +1,14 @@
 //
 // 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 <stdint.h>
 #include "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);