]> Shamusworld >> Repos - thunder/blobdiff - src/screen.h
Code cleanup.
[thunder] / src / screen.h
index 417c8c2849ae9fbfb1f8859fa4aea278c0326139..50c3aafaae44c63f09883a8c6b265526fd99a1f6 100644 (file)
@@ -1,20 +1,21 @@
 //
 // SCREEN.H
 //
-// by James L. Hammons
-// (C) 1997 Underground Software
+// by James Hammons
+// (C) 1997, 2014 Underground Software
 //
 
 #ifndef __SCREEN_H__
 #define __SCREEN_H__
 
 #include "SDL.h"
-#include "types.h"
+#include <stdint.h>
 
 #define VIRTUAL_SCREEN_WIDTH    288
 #define VIRTUAL_SCREEN_HEIGHT   224
 
 void SnapPCX(SDL_Surface *);          // Take a PCX snapshot
-void BlitChar(SDL_Surface *, uint8 *, uint8 *); // Show NAMCO screen
+void BlitChar(SDL_Surface *, uint8_t *, uint8_t *); // Show NAMCO screen
 
 #endif // __SCREEN_H__
+