From e232d024c5e20436fa64c25bfb506d8e2ece9a50 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 9 Dec 2018 14:46:57 -0800 Subject: GLK: Standardizing uint vs uint32 usage --- graphics/macgui/mactextwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'graphics') diff --git a/graphics/macgui/mactextwindow.cpp b/graphics/macgui/mactextwindow.cpp index 0ea311aa28..4edc924c02 100644 --- a/graphics/macgui/mactextwindow.cpp +++ b/graphics/macgui/mactextwindow.cpp @@ -448,7 +448,7 @@ void MacTextWindow::drawInput() { // Now recalc new text height _fontRef->wordWrapText(_inputText, _maxWidth, text); - _inputTextHeight = MAX(1u, text.size()); // We always have line to clean + _inputTextHeight = MAX((uint)1, text.size()); // We always have line to clean // And add new input line to the text appendText(_inputText, _font, true); -- cgit v1.2.3