mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-13 15:44:36 +00:00
uninitialized variables-gfx
This commit is contained in:
parent
1efb687867
commit
b9c207765e
33 changed files with 108 additions and 43 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue