1
0
mirror of https://git.suyu.dev/suyu/suyu synced 2025-01-16 04:40:12 -06:00

Update src/video_core/engines/shader_bytecode.h

Co-Authored-By: FernandoS27 <fsahmkow27@gmail.com>
This commit is contained in:
Mat M 2019-02-03 21:27:26 -04:00 committed by GitHub
parent 0306c50339
commit a568cd805b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;