summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorMai M <mathew1800@gmail.com>2022-01-05 06:41:16 -0500
committerGitHub <noreply@github.com>2022-01-05 06:41:16 -0500
commit7116a7d28bb7f0b4ecdf937d20635382e91f4b93 (patch)
treedbf9c3f3c15da610ee8f31d43bf183f16780c72e /src/video_core
parent37a3b89e7a22564b354984a9f401cdb48b0ee897 (diff)
parent41bbb31af426d5d85fe069ff65f0079ed04d24c8 (diff)
Merge pull request #7673 from german77/no_return
glsl: Remove unreachable return
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/shader_environment.cpp2
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) {
}
}
-void FileEnvironment::Dump(u64 [[maybe_unused]] hash) {
+void FileEnvironment::Dump(u64 hash) {
DumpImpl(hash, code.get(), read_highest, read_lowest, initial_offset, stage);
}