50 parseLDConfig(); |
50 parseLDConfig(); |
51 } |
51 } |
52 |
52 |
53 // ============================================================================= |
53 // ============================================================================= |
54 // ----------------------------------------------------------------------------- |
54 // ----------------------------------------------------------------------------- |
55 LDColor* getColor (short colnum) |
55 LDColor* getColor (int colnum) |
56 { // Check bounds |
56 { // Check bounds |
57 if (colnum < 0 || colnum >= MAX_COLORS) |
57 if (colnum < 0 || colnum >= MAX_COLORS) |
58 return null; |
58 return null; |
59 |
59 |
60 return g_LDColors[colnum]; |
60 return g_LDColors[colnum]; |
61 } |
61 } |
62 |
62 |
63 // ============================================================================= |
63 // ============================================================================= |
64 // ----------------------------------------------------------------------------- |
64 // ----------------------------------------------------------------------------- |
65 void setColor (short colnum, LDColor* col) |
65 void setColor (int colnum, LDColor* col) |
66 { if (colnum < 0 || colnum >= MAX_COLORS) |
66 { if (colnum < 0 || colnum >= MAX_COLORS) |
67 return; |
67 return; |
68 |
68 |
69 g_LDColors[colnum] = col; |
69 g_LDColors[colnum] = col; |
70 } |
70 } |