Skip to content

Commit

Permalink
GUI: Fix Compiler Warning in Unknown Game Dialog
Browse files Browse the repository at this point in the history
This is a signed vs. unsigned comparison warning from GCC.
  • Loading branch information
digitall committed May 2, 2019
1 parent 7862140 commit ae7acf1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/unknown-game-dialog.cpp
Expand Up @@ -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)
Expand Down

0 comments on commit ae7acf1

Please sign in to comment.