mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
Fixed compilation with GCC/Clang
No more 'enumeration previously declared with fixed underlying type' error
This commit is contained in:
parent
be9b2b38fc
commit
04e2b3be4a
1 changed files with 2 additions and 2 deletions
|
@ -19,7 +19,7 @@ EXTERN_CVAR(Int, m_use_mouse);
|
|||
struct event_t;
|
||||
class FTexture;
|
||||
class FFont;
|
||||
enum EColorRange;
|
||||
enum EColorRange : int;
|
||||
class FPlayerClass;
|
||||
class FKeyBindings;
|
||||
|
||||
|
@ -709,4 +709,4 @@ void M_InitVideoModesMenu ();
|
|||
void M_MarkMenus();
|
||||
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue