Skip to content

Commit

Permalink
SWORD25: Fix signed/unsigned warning
Browse files Browse the repository at this point in the history
  • Loading branch information
bluegr committed May 22, 2016
1 parent 7f14523 commit b966286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/sword25/package/packagemanager.cpp
Expand Up @@ -82,7 +82,7 @@ Common::String PackageManager::ensureSpeechLang(const Common::String &fileName)
return fileName;

Common::String newFileName = "/speech/en";
int fileIdx = 9;
uint fileIdx = 9;
while (fileIdx < fileName.size() && fileName[fileIdx] != '/')
++fileIdx;
if (fileIdx < fileName.size())
Expand Down

0 comments on commit b966286

Please sign in to comment.