summaryrefslogtreecommitdiff
path: root/src/citra_qt/debugger/graphics_cmdlists.cpp
diff options
context:
space:
mode:
authorGravatar zawata2015-06-27 19:27:49 -0700
committerGravatar zawata2015-07-19 03:59:44 -0700
commit3c802b06e9899685b744470c37ff48414f63c34f (patch)
tree3d6d49c635e4a5498609302139473f8e86e0e581 /src/citra_qt/debugger/graphics_cmdlists.cpp
parentMerge pull request #941 from citra-emu/armv6-thumb-mov (diff)
downloadyuzu-3c802b06e9899685b744470c37ff48414f63c34f.tar.gz
yuzu-3c802b06e9899685b744470c37ff48414f63c34f.tar.xz
yuzu-3c802b06e9899685b744470c37ff48414f63c34f.zip
Citra_QT : Fix Conversion Warnings
Diffstat (limited to 'src/citra_qt/debugger/graphics_cmdlists.cpp')
-rw-r--r--src/citra_qt/debugger/graphics_cmdlists.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_cmdlists.cpp b/src/citra_qt/debugger/graphics_cmdlists.cpp
index cabf5fe07..e15ed7dea 100644
--- a/src/citra_qt/debugger/graphics_cmdlists.cpp
+++ b/src/citra_qt/debugger/graphics_cmdlists.cpp
@@ -168,7 +168,7 @@ GPUCommandListModel::GPUCommandListModel(QObject* parent) : QAbstractListModel(p
168} 168}
169 169
170int GPUCommandListModel::rowCount(const QModelIndex& parent) const { 170int GPUCommandListModel::rowCount(const QModelIndex& parent) const {
171 return pica_trace.writes.size(); 171 return static_cast<int>(pica_trace.writes.size());
172} 172}
173 173
174int GPUCommandListModel::columnCount(const QModelIndex& parent) const { 174int GPUCommandListModel::columnCount(const QModelIndex& parent) const {