| 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 022325b5ac47d66e14d4f942347f91a266358ac5..2a490a62a44d21f1266ef8cbcf5425ddf36212a6 100644
|
| --- a/core/src/fxge/win32/fx_win32_dwrite.cpp
|
| +++ b/core/src/fxge/win32/fx_win32_dwrite.cpp
|
| @@ -314,7 +314,7 @@ HRESULT STDMETHODCALLTYPE CDwFontFileStream::ReadFileFragment(
|
| {
|
| if (fileOffset <= resourceSize_ &&
|
| fragmentSize <= resourceSize_ - fileOffset) {
|
| - *fragmentStart = static_cast<FX_BYTE const*>(resourcePtr_) + static_cast<size_t>(fileOffset);
|
| + *fragmentStart = static_cast<uint8_t const*>(resourcePtr_) + static_cast<size_t>(fileOffset);
|
| *fragmentContext = NULL;
|
| return S_OK;
|
| } else {
|
|
|