mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 17:49:48 -06:00
ColorUtil: Make decodeCI8image's pal parameter const
This commit is contained in:
@ -58,7 +58,7 @@ void decode5A3image(u32* dst, const u16* src, int width, int height)
|
||||
}
|
||||
}
|
||||
|
||||
void decodeCI8image(u32* dst, const u8* src, u16* pal, int width, int height)
|
||||
void decodeCI8image(u32* dst, const u8* src, const u16* pal, int width, int height)
|
||||
{
|
||||
for (int y = 0; y < height; y += 4)
|
||||
{
|
||||
|
@ -9,6 +9,6 @@
|
||||
namespace ColorUtil
|
||||
{
|
||||
void decode5A3image(u32* dst, const u16* src, int width, int height);
|
||||
void decodeCI8image(u32* dst, const u8* src, u16* pal, int width, int height);
|
||||
void decodeCI8image(u32* dst, const u8* src, const u16* pal, int width, int height);
|
||||
|
||||
} // namespace
|
||||
|
Reference in New Issue
Block a user