mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 11:03:57 +00:00
Fix uint to be uint8 since otherwise it's undefined on a lot of platforms.
This commit is contained in:
parent
213d98f985
commit
8f748ce070
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ static inline void clamp(ty &x, const ty &min, const ty &max) {
|
|||
// absolute distance. It turns out the compiler does a much
|
||||
// better job of optimizing this than we can, since we can't
|
||||
// translate the values to/from registers
|
||||
static uint sad(uint8 a, uint8 b) {
|
||||
static uint8 sad(uint8 a, uint8 b) {
|
||||
#if 0
|
||||
__asm
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue