From 627241de8582e48c95da75b982a59a1773401ad5 Mon Sep 17 00:00:00 2001 From: Joost Peters Date: Wed, 4 Feb 2009 22:05:57 +0000 Subject: correct endianness in SetActorRGB() svn-id: r36220 --- engines/tinsel/actors.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/tinsel/actors.cpp b/engines/tinsel/actors.cpp index 6020fa7d24..2eda96db95 100644 --- a/engines/tinsel/actors.cpp +++ b/engines/tinsel/actors.cpp @@ -1296,9 +1296,9 @@ void SetActorRGB(int ano, COLORREF colour) { assert(ano >= 0 && ano <= NumActors); if (ano) - actorInfo[ano - 1].textColour = colour; + actorInfo[ano - 1].textColour = TO_LE_32(colour); else - defaultColour = colour; + defaultColour = TO_LE_32(colour); } /** -- cgit v1.2.3