summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar zawata2015-06-27 23:41:29 -0700
committerGravatar zawata2015-07-19 03:59:52 -0700
commitc66b5ca3d98d1171b254fb590bce9a71acbefe7f (patch)
tree1ece5bb7be9333d3e005a929bab1e599e5ffb6fd /src
parentVideo_Core : Change Tabs to Spaces (diff)
downloadyuzu-c66b5ca3d98d1171b254fb590bce9a71acbefe7f.tar.gz
yuzu-c66b5ca3d98d1171b254fb590bce9a71acbefe7f.tar.xz
yuzu-c66b5ca3d98d1171b254fb590bce9a71acbefe7f.zip
Citra_QT : Another Conversion Warning Fix
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/debugger/graphics_vertex_shader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.cpp b/src/citra_qt/debugger/graphics_vertex_shader.cpp
index 14d3f8f39..074418821 100644
--- a/src/citra_qt/debugger/graphics_vertex_shader.cpp
+++ b/src/citra_qt/debugger/graphics_vertex_shader.cpp
@@ -34,7 +34,7 @@ int GraphicsVertexShaderModel::columnCount(const QModelIndex& parent) const {
34} 34}
35 35
36int GraphicsVertexShaderModel::rowCount(const QModelIndex& parent) const { 36int GraphicsVertexShaderModel::rowCount(const QModelIndex& parent) const {
37 return info.code.size(); 37 return static_cast<int>(info.code.size());
38} 38}
39 39
40QVariant GraphicsVertexShaderModel::headerData(int section, Qt::Orientation orientation, int role) const { 40QVariant GraphicsVertexShaderModel::headerData(int section, Qt::Orientation orientation, int role) const {