summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2022-01-05 04:25:47 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2022-01-05 04:25:47 +0100
commit41bbb31af426d5d85fe069ff65f0079ed04d24c8 (patch)
tree04174268bb5bd3d5322907a2644ff5c746c4c8dd
parentglsl: Remove unreachable return (diff)
downloadyuzu-41bbb31af426d5d85fe069ff65f0079ed04d24c8.tar
yuzu-41bbb31af426d5d85fe069ff65f0079ed04d24c8.tar.gz
yuzu-41bbb31af426d5d85fe069ff65f0079ed04d24c8.tar.bz2
yuzu-41bbb31af426d5d85fe069ff65f0079ed04d24c8.tar.lz
yuzu-41bbb31af426d5d85fe069ff65f0079ed04d24c8.tar.xz
yuzu-41bbb31af426d5d85fe069ff65f0079ed04d24c8.tar.zst
yuzu-41bbb31af426d5d85fe069ff65f0079ed04d24c8.zip
-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);
}