| Index: core/src/fxge/win32/fx_win32_dwrite.cpp
|
| diff --git a/core/src/fxge/win32/fx_win32_dwrite.cpp b/core/src/fxge/win32/fx_win32_dwrite.cpp
|
| index 6008b946a003a17c598d593e5343c9e03ca73baf..b3ce91556e3a61431fb189adfda9aa168ca1ad5d 100644
|
| --- a/core/src/fxge/win32/fx_win32_dwrite.cpp
|
| +++ b/core/src/fxge/win32/fx_win32_dwrite.cpp
|
| @@ -65,7 +65,7 @@ class CDwFontFileLoader final : public IDWriteFontFileLoader {
|
| OUT IDWriteFontFileStream** fontFileStream);
|
|
|
| static IDWriteFontFileLoader* GetLoader() {
|
| - if (instance_ == NULL) {
|
| + if (!instance_) {
|
| instance_ = new CDwFontFileLoader();
|
| }
|
| return instance_;
|
| @@ -216,7 +216,7 @@ FX_BOOL CDWriteExt::DwRendingString(void* renderTarget,
|
| FX_FLOAT baselineOriginY,
|
| void* glyph_offsets,
|
| FX_FLOAT* glyph_advances) {
|
| - if (renderTarget == NULL) {
|
| + if (!renderTarget) {
|
| return TRUE;
|
| }
|
| CDwGdiTextRenderer* pTextRenderer = (CDwGdiTextRenderer*)renderTarget;
|
|
|