From 864605dce29cf07096eee09405e3812c9b484853 Mon Sep 17 00:00:00 2001 From: Kp Date: Sun, 19 Apr 2015 04:18:52 +0000 Subject: [PATCH] Use stdint for titles.h --- common/main/titles.h | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/common/main/titles.h b/common/main/titles.h index 227f6e7a8..b1f376204 100644 --- a/common/main/titles.h +++ b/common/main/titles.h @@ -23,12 +23,10 @@ COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED. * */ -#ifndef _TITLES_H -#define _TITLES_H - -#include "pstypes.h" +#pragma once #ifdef __cplusplus +#include struct d_fname; @@ -37,12 +35,10 @@ void do_briefing_screens(const d_fname &filename, int level_num); void do_end_briefing_screens(const d_fname &filename); extern char * get_briefing_screen( int level_num ); #if defined(DXX_BUILD_DESCENT_II) -extern void show_loading_screen(ubyte *title_pal); +void show_loading_screen(uint8_t *title_pal); extern void show_endgame_briefing(void); extern int intro_played; #endif extern void show_order_form(void); #endif - -#endif