PickPalette: fix call to `SetCellBackgroundColour`

How did this ever work? The signature was wrong according to the docs.
The last element should be the colour, not the first one.
1 files changed, 1 insertions(+), 1 deletions(-)

M tool_palette.cpp
M tool_palette.cpp +1 -1
@@ 276,7 276,7 @@ PickPalette::PickPalette(wxWindow* paren
 			for (int c=0; c<4; ++c)
 			{
 				grid->SetReadOnly(i,c,true);
-				grid->SetCellBackgroundColour(Data::nes_palette()[data->palette[i]->data[c]],i,c);
+				grid->SetCellBackgroundColour(i, c, Data::nes_palette()[data->palette[i]->data[c]]);
 			}
 		}