diff options
| author | 2015-06-27 19:32:56 -0700 | |
|---|---|---|
| committer | 2015-07-19 03:59:49 -0700 | |
| commit | 716120da3d2f631edbb60638c2dd4b5400139c37 (patch) | |
| tree | e9b6779198e5bad1434480d858583120f97fd2b3 /src/video_core/vertex_shader.cpp | |
| parent | Core : Fix Conversion Warnings (diff) | |
| download | yuzu-716120da3d2f631edbb60638c2dd4b5400139c37.tar.gz yuzu-716120da3d2f631edbb60638c2dd4b5400139c37.tar.xz yuzu-716120da3d2f631edbb60638c2dd4b5400139c37.zip | |
Video_Core : Fix Conversion Warnings
Diffstat (limited to 'src/video_core/vertex_shader.cpp')
| -rw-r--r-- | src/video_core/vertex_shader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vertex_shader.cpp b/src/video_core/vertex_shader.cpp index 87006a832..f074a3128 100644 --- a/src/video_core/vertex_shader.cpp +++ b/src/video_core/vertex_shader.cpp | |||
| @@ -96,7 +96,7 @@ static void ProcessShaderCode(VertexShaderState& state) { | |||
| 96 | state.program_counter = &program_code[offset] - 1; // -1 to make sure when incrementing the PC we end up at the correct offset | 96 | state.program_counter = &program_code[offset] - 1; // -1 to make sure when incrementing the PC we end up at the correct offset |
| 97 | state.call_stack.push({ offset + num_instructions, return_offset, repeat_count, loop_increment, offset }); | 97 | state.call_stack.push({ offset + num_instructions, return_offset, repeat_count, loop_increment, offset }); |
| 98 | }; | 98 | }; |
| 99 | u32 binary_offset = state.program_counter - program_code.data(); | 99 | u32 binary_offset = static_cast<u32>(state.program_counter - program_code.data()); |
| 100 | 100 | ||
| 101 | state.debug.max_offset = std::max<u32>(state.debug.max_offset, 1 + binary_offset); | 101 | state.debug.max_offset = std::max<u32>(state.debug.max_offset, 1 + binary_offset); |
| 102 | 102 | ||