| Index: core/fxge/ge/fx_ge_text.cpp
 | 
| diff --git a/core/fxge/ge/fx_ge_text.cpp b/core/fxge/ge/fx_ge_text.cpp
 | 
| index 3725f3652b48c2fdb197f21f28ee93e695049341..6b456c2eaa0eaf328736adf671b0c0406aaade86 100644
 | 
| --- a/core/fxge/ge/fx_ge_text.cpp
 | 
| +++ b/core/fxge/ge/fx_ge_text.cpp
 | 
| @@ -448,8 +448,8 @@ FX_BOOL CFX_RenderDevice::DrawNormalText(int nChars,
 | 
|      if (!(text_flags & FXTEXT_PRINTGRAPHICTEXT)) {
 | 
|        if (ShouldDrawDeviceText(pFont, text_flags) &&
 | 
|            m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
 | 
| -                                          pText2Device, font_size, fill_color,
 | 
| -                                          0, nullptr)) {
 | 
| +                                          pText2Device, font_size,
 | 
| +                                          fill_color)) {
 | 
|          return TRUE;
 | 
|        }
 | 
|      }
 | 
| @@ -458,8 +458,7 @@ FX_BOOL CFX_RenderDevice::DrawNormalText(int nChars,
 | 
|    } else if (!(text_flags & FXTEXT_NO_NATIVETEXT)) {
 | 
|      if (ShouldDrawDeviceText(pFont, text_flags) &&
 | 
|          m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache,
 | 
| -                                        pText2Device, font_size, fill_color, 0,
 | 
| -                                        nullptr)) {
 | 
| +                                        pText2Device, font_size, fill_color)) {
 | 
|        return TRUE;
 | 
|      }
 | 
|    }
 | 
| 
 |