mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-14 12:10:30 +00:00
Merge pull request #303 from Wojbie/Window-api-fix
Fix to setPaletteColour in rgb8 mode.
This commit is contained in:
commit
0f982e6199
@ -299,6 +299,7 @@ function create( parent, nX, nY, nWidth, nHeight, bStartVisible )
|
|||||||
local tCol
|
local tCol
|
||||||
if type(colour) == "number" and type(r) == "number" and g == nil and b == nil then
|
if type(colour) == "number" and type(r) == "number" and g == nil and b == nil then
|
||||||
tCol = { colours.rgb8( r ) }
|
tCol = { colours.rgb8( r ) }
|
||||||
|
tPalette[ colour ] = tCol
|
||||||
elseif type(colour) == "number" and type(r) == "number" and type(g) == "number" and type(b) == "number" then
|
elseif type(colour) == "number" and type(r) == "number" and type(g) == "number" and type(b) == "number" then
|
||||||
tCol = tPalette[ colour ]
|
tCol = tPalette[ colour ]
|
||||||
tCol[1] = r
|
tCol[1] = r
|
||||||
|
Loading…
Reference in New Issue
Block a user