mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +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;
|
struct event_t;
|
||||||
class FRenderState;
|
class FRenderState;
|
||||||
class FGameTexture;
|
class FGameTexture;
|
||||||
enum EUpscaleFlags;
|
enum EUpscaleFlags : int;
|
||||||
|
|
||||||
struct SystemCallbacks
|
struct SystemCallbacks
|
||||||
{
|
{
|
||||||
|
|
|
@ -361,7 +361,7 @@ inline FGameTexture* MakeGameTexture(FTexture* tex, const char *name, ETextureTy
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum EUpscaleFlags
|
enum EUpscaleFlags : int
|
||||||
{
|
{
|
||||||
UF_None = 0,
|
UF_None = 0,
|
||||||
UF_Texture = 1,
|
UF_Texture = 1,
|
||||||
|
|
Loading…
Reference in a new issue