mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
GRAPHICS: MACGUI: Added sanity check to splitString()
This commit is contained in:
parent
bd3031552b
commit
66455b6aa5
@ -279,7 +279,10 @@ void MacText::splitString(Common::U32String &str) {
|
||||
|
||||
_currentFormatting.getFont()->wordWrapText(tmp, _maxWidth, text, w);
|
||||
|
||||
_textLines[curLine].chunks[curChunk].text = text[0];
|
||||
if (text.size())
|
||||
_textLines[curLine].chunks[curChunk].text = text[0];
|
||||
else
|
||||
warning("MacText::splitString(): Font resulted in 0 width for text '%s'", tmp.encode().c_str());
|
||||
|
||||
if (text.size() > 1) {
|
||||
for (uint i = 1; i < text.size(); i++) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user