Browse Source
Update src/video_core/engines/shader_bytecode.h
Co-Authored-By: FernandoS27 <fsahmkow27@gmail.com>
pull/15/merge
Mat M
7 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
1 deletions
-
src/video_core/engines/shader_bytecode.h
|
|
|
@ -983,7 +983,7 @@ union Instruction { |
|
|
|
} |
|
|
|
|
|
|
|
bool IsComponentEnabled(std::size_t component) const { |
|
|
|
return ((1ul << component) & component_mask) != 0; |
|
|
|
return ((1ULL << component) & component_mask) != 0; |
|
|
|
} |
|
|
|
} txq; |
|
|
|
|
|
|
|
|