View Single Post
Old 17 February 2016, 19:20   #17
earok
Registered User
 
Join Date: Dec 2013
Location: Auckland
Posts: 3,542
Some technical info about the palette hacks for anyone interested:

The palettes appear to be the original Atari ST ones, where you can use the values 0-7 for each of the RGB channels. So white would be:

Code:
$0777
(The leading 0 so the value is word-aligned)

The game doubles the values when it loads them. Which results in:

Code:
$0EEE
However, this isn't pure white - pure white on an Amiga would be $0FFF, so you can see in the original left screenshot that the text is slightly gray.

If, instead they had used this value:

Code:
$07FF
It doubles to $0FFE - very close to pure white. The trick is that I've bumped the values in the G and B column to being above 7, so when it doubles it carries the 1 across to the next column.



(If you're wondering why I didn't simply remove the line that doubles the palette values and enter the correct values directly, I did that at first but then found there were certain palettes that I couldn't find - such as on the title screen - which meant those areas became dark)
earok is offline  
 
Page generated in 0.04426 seconds with 11 queries