소스 검색

video_core: Remove unnecesary maybe_unused flag

Narr the Reg 4 년 전
부모
커밋
41bbb31af4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video_core/shader_environment.cpp

+ 1 - 1
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);
 }