So I was experimenting with a screen mode I saw in a game published here. It uses a bunch of OUT commands to lower the vertical resolution.
10 MODE 0:BORDER 0
20 OUT &BC00,0:OUT &BD00,127
30 OUT &BC00,4:OUT &BD00,18
40 OUT &BC00,5:OUT &BD00,15
50 OUT &BC00,6:OUT &BD00,15
60 OUT &BC00,7:OUT &BD00,17
The problem is that INK commands no longer work, and I want to change the palette while in this "MODE".
Does anyone understand why changing INKs doesn't work and how to fix it?