Browse Source

Merge pull request #6518 from lioncash/func

maxwell3d: Add missing return in default SizeInBytes() case
bunnei 5 năm trước cách đây
mục cha
commit
d8d9bb0dfb
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  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;
                 }
             }