diff options
| author | 2015-06-27 23:41:29 -0700 | |
|---|---|---|
| committer | 2015-07-19 03:59:52 -0700 | |
| commit | c66b5ca3d98d1171b254fb590bce9a71acbefe7f (patch) | |
| tree | 1ece5bb7be9333d3e005a929bab1e599e5ffb6fd /src | |
| parent | Video_Core : Change Tabs to Spaces (diff) | |
| download | yuzu-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.cpp | 2 |
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 | ||
| 36 | int GraphicsVertexShaderModel::rowCount(const QModelIndex& parent) const { | 36 | int GraphicsVertexShaderModel::rowCount(const QModelIndex& parent) const { |
| 37 | return info.code.size(); | 37 | return static_cast<int>(info.code.size()); |
| 38 | } | 38 | } |
| 39 | 39 | ||
| 40 | QVariant GraphicsVertexShaderModel::headerData(int section, Qt::Orientation orientation, int role) const { | 40 | QVariant GraphicsVertexShaderModel::headerData(int section, Qt::Orientation orientation, int role) const { |