uninitialized variables-gfx

This commit is contained in:
AzaezelX 2020-05-11 15:00:25 -05:00
parent 1efb687867
commit b9c207765e
33 changed files with 108 additions and 43 deletions

View file

@ -42,6 +42,7 @@
GFX_DeclareTextureProfile(GFXFontTextureProfile);
#define Font_Table_MAX 65536
class GFont
{
@ -159,7 +160,7 @@ private:
Vector<PlatformFont::CharInfo> mCharInfoList;
/// Index remapping
S32 mRemapTable[65536];
S32 mRemapTable[Font_Table_MAX];
};
inline U32 GFont::getCharXIncrement(const UTF16 in_charIndex)