diff options
author | D G Turner | 2019-05-03 00:43:03 +0100 |
---|---|---|
committer | D G Turner | 2019-05-03 00:43:03 +0100 |
commit | ae7acf109992627e4627dabe1a25f815f8a7467b (patch) | |
tree | 05c0f661c4722f669b8b4c367ea13ce99dbd710f | |
parent | 786214093985b24c31f9828588d01130cabaa626 (diff) | |
download | scummvm-rg350-ae7acf109992627e4627dabe1a25f815f8a7467b.tar.gz scummvm-rg350-ae7acf109992627e4627dabe1a25f815f8a7467b.tar.bz2 scummvm-rg350-ae7acf109992627e4627dabe1a25f815f8a7467b.zip |
GUI: Fix Compiler Warning in Unknown Game Dialog
This is a signed vs. unsigned comparison warning from GCC.
-rw-r--r-- | gui/unknown-game-dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/unknown-game-dialog.cpp b/gui/unknown-game-dialog.cpp index c6c6887a43..d96791742e 100644 --- a/gui/unknown-game-dialog.cpp +++ b/gui/unknown-game-dialog.cpp @@ -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) |