(svn r13994) -Codechange: replace a few rogue magic numbers with Colours enum values

This commit is contained in:
belugas
2008-08-04 17:27:06 +00:00
parent d21f73658c
commit 5c3a18fa90
3 changed files with 3 additions and 3 deletions

View File

@@ -172,7 +172,7 @@ extern DrawPixelInfo *_cur_dpi;
* All 16 colour gradients
* 8 colours per gradient from darkest (0) to lightest (7)
*/
extern byte _colour_gradient[16][8];
extern byte _colour_gradient[COLOUR_END][8];
extern bool _use_dos_palette;