summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorGravatar Jonathan Hao2017-01-05 00:48:29 +0800
committerGravatar Yuri Kunde Schlesner2017-01-04 13:48:29 -0300
commitc18cb1b192d60499af3d68b244e86c8dd8f55200 (patch)
tree48c481884bb29dd7bde72694a6ed703bb416d7c3 /src/video_core
parentUpdate .travis.yml (diff)
downloadyuzu-c18cb1b192d60499af3d68b244e86c8dd8f55200.tar.gz
yuzu-c18cb1b192d60499af3d68b244e86c8dd8f55200.tar.xz
yuzu-c18cb1b192d60499af3d68b244e86c8dd8f55200.zip
Fix some warnings (#2399)
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/shader/shader_interpreter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/shader/shader_interpreter.cpp b/src/video_core/shader/shader_interpreter.cpp
index 70db4167e..20fb9754b 100644
--- a/src/video_core/shader/shader_interpreter.cpp
+++ b/src/video_core/shader/shader_interpreter.cpp
@@ -27,8 +27,6 @@ namespace Pica {
27 27
28namespace Shader { 28namespace Shader {
29 29
30constexpr u32 INVALID_ADDRESS = 0xFFFFFFFF;
31
32struct CallStackElement { 30struct CallStackElement {
33 u32 final_address; // Address upon which we jump to return_address 31 u32 final_address; // Address upon which we jump to return_address
34 u32 return_address; // Where to jump when leaving scope 32 u32 return_address; // Where to jump when leaving scope