1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-02 09:03:37 +00:00

Fix VS2013 compilation

This commit is contained in:
Gillou68310 2017-12-14 17:46:45 +01:00
parent cc3e1e6302
commit 876d7a6273

View File

@ -98,7 +98,8 @@ public:
u32 dstHeight;
bool invertX = false;
bool invertY = false;
std::array<CachedTexture *, 2> tex{ { nullptr, nullptr } };
typedef std::array<CachedTexture *, 2> Textures;
Textures tex = Textures{ { nullptr, nullptr } };
graphics::CombinerProgram * combiner = nullptr;
graphics::TextureParam filter;
};