Commit 0814dce
committed
fix: correct Pokemon Red/Blue CGB palette RGB555 values
Updated Pokemon Red and Blue DMG colorization palettes to match the
accurate RGB555 values from the Game Boy Color boot ROM. The previous
values were incorrect, resulting in wrong colors.
Changes:
- Pokemon Red: Fixed background reds and object lime green colors
- Pokemon Blue: Fixed background blues (was showing red!) and object red colors
Source: Bulbapedia CGB palette data, converted from RGB888 to RGB555
using the formula: (R>>3) | (G>>3)<<5 | (B>>3)<<101 parent 3fd1ed6 commit 0814dce
1 file changed
Lines changed: 7 additions & 7 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
72 | | - | |
73 | | - | |
74 | | - | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
75 | 75 | | |
76 | 76 | | |
77 | | - | |
| 77 | + | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
81 | | - | |
82 | | - | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
| |||
0 commit comments