Fix the SHR pallette

This commit is contained in:
Ivan Izaguirre 2019-11-11 23:49:48 +01:00 committed by Iván Izaguirre
parent 4f466826b9
commit c91e9d43f4
1 changed files with 3 additions and 3 deletions

View File

@ -34,9 +34,9 @@ func snapshotSuperHiResMode(a *Apple2) *image.RGBA {
b1 := palleteMem[iMem]
iMem++
red := (b0 & 0x0f) << 4
green := b1 & 0xf0
blue := (b1 & 0x0f) << 4
red := (b1 & 0x0f) << 4
green := b0 & 0xf0
blue := (b0 & 0x0f) << 4
colors[i] = color.RGBA{red, green, blue, 255}
}