Merge pull request #3039 from lioncash/typedef

VideoCommon: Remove unnecessary enum typedef
This commit is contained in:
Markus Wick 2015-09-15 07:05:25 +02:00
commit 7eeeb9f754
1 changed files with 2 additions and 2 deletions

View File

@ -66,12 +66,12 @@ struct TargetRectangle : public MathUtil::Rectangle<int>
#define LOG_VTX()
typedef enum
enum API_TYPE
{
API_OPENGL = 1,
API_D3D = 2,
API_NONE = 3
} API_TYPE;
};
inline u32 RGBA8ToRGBA6ToRGBA8(u32 src)
{