Citra_QT : Fix Conversion Warnings
This commit is contained in:
parent
71be5853e0
commit
3c802b06e9
2 changed files with 2 additions and 2 deletions
|
@ -168,7 +168,7 @@ GPUCommandListModel::GPUCommandListModel(QObject* parent) : QAbstractListModel(p
|
|||
}
|
||||
|
||||
int GPUCommandListModel::rowCount(const QModelIndex& parent) const {
|
||||
return pica_trace.writes.size();
|
||||
return static_cast<int>(pica_trace.writes.size());
|
||||
}
|
||||
|
||||
int GPUCommandListModel::columnCount(const QModelIndex& parent) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue