Skip to content
Snippets Groups Projects
Commit ad84aa03 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Resolve MSVC warning

parent e558fef4
No related branches found
No related tags found
No related merge requests found
......@@ -2759,7 +2759,7 @@ void upop(const char *instr)
if (!width)
return;
width += 7;
if (width > api->scrn_width) {
if ((uint)width > api->scrn_width) {
str[api->scrn_width - 7] = '\0';
width = api->scrn_width;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment