mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 23:01:16 +00:00
prefer decimal values than hex for m_entries
This commit is contained in:
parent
a59a3ebb6e
commit
1b53ef0d95
@ -59,10 +59,10 @@ MxResult MxPalette::SetSkyColor(LPPALETTEENTRY p_entries)
|
|||||||
{
|
{
|
||||||
// FIXME: doesnt match
|
// FIXME: doesnt match
|
||||||
MxResult ret = SUCCESS;
|
MxResult ret = SUCCESS;
|
||||||
this->m_entries[0x8d].peRed = p_entries->peRed;
|
this->m_entries[141].peRed = p_entries->peRed;
|
||||||
this->m_entries[0x8d].peGreen = p_entries->peGreen;
|
this->m_entries[141].peGreen = p_entries->peGreen;
|
||||||
this->m_entries[0x8d].peBlue = p_entries->peBlue;
|
this->m_entries[141].peBlue = p_entries->peBlue;
|
||||||
this->m_skyColor = this->m_entries[0x8d];
|
this->m_skyColor = this->m_entries[141];
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user