Fix minor typo in comment.

This commit is contained in:
Unknown W. Brackets 2014-05-18 19:18:49 -07:00
parent 8c11559e3b
commit 09dde13b19

View File

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