| 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 0849583384961a0ed45a0c9ea48fb7dee42658c1..e2951e4d073a2d97165eb159d9c6438d7b4c1ccf 100644
|
| --- a/core/src/fxge/win32/fx_win32_dwrite.cpp
|
| +++ b/core/src/fxge/win32/fx_win32_dwrite.cpp
|
| @@ -310,7 +310,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 {
|
|
|