소스 검색

Merge pull request #6518 from lioncash/func

maxwell3d: Add missing return in default SizeInBytes() case
bunnei 5 년 전
부모
커밋
d8d9bb0dfb
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/video_core/engines/maxwell_3d.h

+ 1 - 0
src/video_core/engines/maxwell_3d.h

@@ -242,6 +242,7 @@ public:
                     return 4;
                 default:
                     UNREACHABLE();
+                    return 1;
                 }
             }