diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2022-01-04 21:25:47 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2022-01-04 21:25:47 -0600 |
commit | 41bbb31af426d5d85fe069ff65f0079ed04d24c8 (patch) | |
tree | 04174268bb5bd3d5322907a2644ff5c746c4c8dd /src/video_core/shader_environment.cpp | |
parent | 524674aafc0935fa48a61cac68ad6e25cc20c07f (diff) |
video_core: Remove unnecesary maybe_unused flag
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 7d3ae0de47..3e673c437c 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); } |