mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- give forward declared enum a type.
This commit is contained in:
parent
96fbfdcf86
commit
3558289d70
2 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@
|
|||
struct event_t;
|
||||
class FRenderState;
|
||||
class FGameTexture;
|
||||
enum EUpscaleFlags;
|
||||
enum EUpscaleFlags : int;
|
||||
|
||||
struct SystemCallbacks
|
||||
{
|
||||
|
|
|
@ -361,7 +361,7 @@ inline FGameTexture* MakeGameTexture(FTexture* tex, const char *name, ETextureTy
|
|||
return t;
|
||||
}
|
||||
|
||||
enum EUpscaleFlags
|
||||
enum EUpscaleFlags : int
|
||||
{
|
||||
UF_None = 0,
|
||||
UF_Texture = 1,
|
||||
|
|
Loading…
Reference in a new issue