mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-26 18:27:53 -05:00
Citra_QT : Fix Conversion Warnings
This commit is contained in:
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user