1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-09-10 16:26:32 -05:00

Citra_QT : Fix Conversion Warnings

This commit is contained in:
zawata
2015-06-27 19:27:49 -07:00
parent 71be5853e0
commit 3c802b06e9
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ int ProfilerModel::rowCount(const QModelIndex& parent) const
if (parent.isValid()) {
return 0;
} else {
return results.time_per_category.size() + 2;
return static_cast<int>(results.time_per_category.size() + 2);
}
}