Build fix for ssize_t not being available in windows.

This commit is contained in:
harry 2023-01-28 15:05:58 -05:00
parent c075cdca4f
commit 7a40075f3e
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,7 @@ void GamePadConfDialog_t::loadMapList(void)
mapSel->addItem(tr("default"), 0);
n = 1;
for (ssize_t i = 0; i < fileList.size(); i++)
for (qsizetype i = 0; i < fileList.size(); i++)
{
size_t suffixIdx;
std::string fileName = fileList[i].toStdString();