24.01.2010, 06:19
I'm trying to make an fs which consists of an array.
This array holds in it several colors and comments of the color.... such as
0xffffff00 <- Color
White <- Comment
Here is the array:
and on the use i'm using this to check which color might be suitable for the factions and stuff.... then i should be able to output the comment to know which color code it is....
And its giving me this error:
Line 16 is the array itself.
This array holds in it several colors and comments of the color.... such as
0xffffff00 <- Color
White <- Comment
Here is the array:
Код:
new Color[Max_Number_Of_Colors][2] = { {"0xffffff00","White"}, {"0xdddddd00","Grey1"}, {"0xcccccc00","Grey2"}, {"0xbbbbbb00","Grey3"} };
And its giving me this error:
Код:
C:\Documents and Settings\Legend\Desktop\Color_Checker.pwn(16) : error 018: initialization data exceeds declared size