mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-23 10:19:27 +00:00
formatting
svn-id: r48638
This commit is contained in:
parent
a1840bd573
commit
fc40276ed7
@ -220,10 +220,10 @@ struct PSPPixelFormat {
|
||||
switch (bitsPerPixel) {
|
||||
case 4: // We can't distinguish a 4 bit color with a pointer
|
||||
case 8:
|
||||
result = (uint32) * pointer;
|
||||
result = *pointer;
|
||||
break;
|
||||
case 16:
|
||||
result = (uint32) * (uint16 *)pointer;
|
||||
result = *(uint16 *)pointer;
|
||||
break;
|
||||
case 32:
|
||||
result = *(uint32 *)pointer;
|
||||
|
Loading…
Reference in New Issue
Block a user