diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2015-08-15 20:13:48 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2015-08-16 14:12:12 +0200 |
commit | 32592364b8f43232fce583d9711a653e99953028 (patch) | |
tree | 4f67fb221da50ada7a62efc45788d16950ef16f6 /src/citra_qt/debugger/graphics_vertex_shader.h | |
parent | 493c432d1e33a66c234485ea09c167888a6f9567 (diff) |
citra-qt/VertexShader: Minor UI improvements.
Renamed "Iteration index" to the (hopefully) more intuitive "Cycle Index".
Added flexible space at the bottom of the widget.
Diffstat (limited to 'src/citra_qt/debugger/graphics_vertex_shader.h')
-rw-r--r-- | src/citra_qt/debugger/graphics_vertex_shader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra_qt/debugger/graphics_vertex_shader.h b/src/citra_qt/debugger/graphics_vertex_shader.h index 6e99f3674..1b3f1f7ec 100644 --- a/src/citra_qt/debugger/graphics_vertex_shader.h +++ b/src/citra_qt/debugger/graphics_vertex_shader.h @@ -51,7 +51,7 @@ private slots: void OnInputAttributeChanged(int index); - void OnIterationIndexChanged(int index); + void OnCycleIndexChanged(int index); void DumpShader(); @@ -80,7 +80,7 @@ private: // Text to be shown when input vertex data is not retrievable QLabel* breakpoint_warning; - QSpinBox* iteration_index; + QSpinBox* cycle_index; nihstro::ShaderInfo info; Pica::Shader::DebugData<true> debug_data; |