This commit is contained in:
Unknown W. Brackets 2014-05-17 11:32:18 -07:00
parent b58320d7dc
commit dbcee43567

View File

@ -64,7 +64,7 @@ public:
inline static u8 Convert4To8(u8 v)
{
// Swizzle bits: 00012345 -> 12345123
// Swizzle bits: 00001234 -> 12341234
return (v << 4) | (v);
}