Browse Source
Merge pull request #6518 from lioncash/func
maxwell3d: Add missing return in default SizeInBytes() case
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
0 deletions
-
src/video_core/engines/maxwell_3d.h
|
|
@ -242,6 +242,7 @@ public: |
|
|
return 4; |
|
|
return 4; |
|
|
default: |
|
|
default: |
|
|
UNREACHABLE(); |
|
|
UNREACHABLE(); |
|
|
|
|
|
return 1; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|