diff options
| author | 2022-01-05 06:41:16 -0500 | |
|---|---|---|
| committer | 2022-01-05 06:41:16 -0500 | |
| commit | 7116a7d28bb7f0b4ecdf937d20635382e91f4b93 (patch) | |
| tree | dbf9c3f3c15da610ee8f31d43bf183f16780c72e /src/video_core/shader_environment.cpp | |
| parent | Merge pull request #7675 from zhaobot/tx-update-20220105075447 (diff) | |
| parent | video_core: Remove unnecesary maybe_unused flag (diff) | |
| download | yuzu-7116a7d28bb7f0b4ecdf937d20635382e91f4b93.tar.gz yuzu-7116a7d28bb7f0b4ecdf937d20635382e91f4b93.tar.xz yuzu-7116a7d28bb7f0b4ecdf937d20635382e91f4b93.zip | |
Merge pull request #7673 from german77/no_return
glsl: Remove unreachable return
Diffstat (limited to 'src/video_core/shader_environment.cpp')
| -rw-r--r-- | src/video_core/shader_environment.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader_environment.cpp b/src/video_core/shader_environment.cpp index 7d3ae0de4..3e673c437 100644 --- a/src/video_core/shader_environment.cpp +++ b/src/video_core/shader_environment.cpp | |||
| @@ -381,7 +381,7 @@ void FileEnvironment::Deserialize(std::ifstream& file) { | |||
| 381 | } | 381 | } |
| 382 | } | 382 | } |
| 383 | 383 | ||
| 384 | void FileEnvironment::Dump(u64 [[maybe_unused]] hash) { | 384 | void FileEnvironment::Dump(u64 hash) { |
| 385 | DumpImpl(hash, code.get(), read_highest, read_lowest, initial_offset, stage); | 385 | DumpImpl(hash, code.get(), read_highest, read_lowest, initial_offset, stage); |
| 386 | } | 386 | } |
| 387 | 387 | ||