GUI: Fix Compiler Warning in Unknown Game Dialog

This is a signed vs. unsigned comparison warning from GCC.
This commit is contained in:
D G Turner 2019-05-03 00:43:03 +01:00
parent 7862140939
commit ae7acf1099

View file

@ -174,7 +174,7 @@ Common::String UnknownGameDialog::generateBugtrackerURL() {
// Remove the filesystem path from the bugtracker report.
// The path is on the first line between single quotes. We strip everything except the last level.
int path_start = -1, path_size = 0;
for (int i = 0 ; i < report.size() ; ++i) {
for (uint i = 0 ; i < report.size() ; ++i) {
char c = report[i];
if (c == '\'') {
if (path_start == -1)