mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06:00
Assorted cleanup and comments.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2693 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -133,8 +133,8 @@ inline u32 decode565(u16 val)
|
||||
|
||||
inline u32 decodeIA8(u16 val)
|
||||
{
|
||||
int a=val>>8;
|
||||
int i=val&0xFF;
|
||||
int a = val >> 8;
|
||||
int i = val & 0xFF;
|
||||
return (a<<24) | (i<<16) | (i<<8) | i;
|
||||
}
|
||||
|
||||
@ -158,8 +158,6 @@ inline u32 decode5A3(u16 val)
|
||||
return (a<<24) | (r<<16) | (g<<8) | b;
|
||||
}
|
||||
|
||||
|
||||
|
||||
struct DXTBlock
|
||||
{
|
||||
u16 color1;
|
||||
|
Reference in New Issue
Block a user