mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 03:40:25 +00:00
GRAPHICS: MACGUI: Fix Signed vs. Unsigned Compiler Warning
This commit is contained in:
parent
bb8704f7d0
commit
6a2c0e5091
@ -1494,7 +1494,7 @@ void MacText::deletePreviousChar(int *row, int *col) {
|
||||
int pos = *col - 1;
|
||||
uint ch = _textLines[*row].getChunkNum(&pos);
|
||||
|
||||
if (pos == _textLines[*row].chunks[ch].text.size())
|
||||
if (pos == (int)_textLines[*row].chunks[ch].text.size())
|
||||
pos--;
|
||||
|
||||
_textLines[*row].chunks[ch].text.deleteChar(pos);
|
||||
|
Loading…
Reference in New Issue
Block a user