diff options
Diffstat (limited to 'core/src/fxge/ge')
-rw-r--r-- | core/src/fxge/ge/fx_ge_fontmap.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/src/fxge/ge/fx_ge_fontmap.cpp b/core/src/fxge/ge/fx_ge_fontmap.cpp index f5d378d55b..4c99765e7d 100644 --- a/core/src/fxge/ge/fx_ge_fontmap.cpp +++ b/core/src/fxge/ge/fx_ge_fontmap.cpp @@ -859,11 +859,11 @@ typedef struct _FX_FontStyle { FX_INT32 len; } FX_FontStyle; const FX_FontStyle g_FontStyles[] = { - "Bold", 4, - "Italic", 6, - "BoldItalic", 10, - "Reg", 3, - "Regular", 7, + { "Bold", 4 }, + { "Italic", 6 }, + { "BoldItalic", 10 }, + { "Reg", 3 }, + { "Regular", 7 }, }; CFX_ByteString ParseStyle(FX_LPCSTR pStyle, int iLen, int iIndex) { |