mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Merge remote-tracking branch 'refs/remotes/bgfx_bkaradzic/master'
Conflicts: examples/common/font/text_buffer_manager.cpp
This commit is contained in:
commit
65b08cc523
3 changed files with 9 additions and 7 deletions
2
3rdparty/freetype/freetype.h
vendored
2
3rdparty/freetype/freetype.h
vendored
|
@ -4,6 +4,8 @@
|
|||
# pragma warning(push)
|
||||
# pragma warning(disable: 4100) // DISABLE warning C4100: '' : unreferenced formal parameter
|
||||
# pragma warning(disable: 4146) // DISABLE warning C4146: unary minus operator applied to unsigned type, result still unsigned
|
||||
# pragma warning(disable: 4244) // DISABLE warning C4244: '+=' : conversion from '__int64' to 'FT_ULong', possible loss of data
|
||||
# pragma warning(disable: 4267) // DISABLE warning C4267: 'initializing' : conversion from 'size_t' to 'FT_Long', possible loss of data
|
||||
# pragma warning(disable: 4700) // DISABLE warning C4700: uninitialized local variable 'temp' used
|
||||
# pragma warning(disable: 4701) // DISABLE warning C4701: potentially uninitialized local variable '' used
|
||||
#elif defined(__GNUC__)
|
||||
|
|
|
@ -261,7 +261,7 @@ void TextBuffer::appendText(FontHandle _fontHandle, const wchar_t* _string, cons
|
|||
}
|
||||
if( _end == NULL)
|
||||
{
|
||||
_end = _string + wcslen(_string);
|
||||
_end = _string + (uint32_t) wcslen(_string);
|
||||
}
|
||||
BX_CHECK(_end >= _string);
|
||||
|
||||
|
|
Loading…
Reference in a new issue