error 052: multi-dimensional arrays must be fully initialized
#1

wat's wrong in here?
pawn Код:
new Float:JpSpawns[4][4] =
{
    {-775.6139,2761.6914,47.2002,178.5629},
    {-842.8282,2752.3252,45.8516,9.0480},
    {-911.5106,2686.1985,42.3703,24.1116}
};
Код:
error 052: multi-dimensional arrays must be fully initialized
EDIT: Fixed! I just need to change this
pawn Код:
new Float:JpSpawns[4][4] =
to this
pawn Код:
new Float:JpSpawns[][4] =
Reply
#2

pawn Код:
new Float:JpSpawns[][] =
{
    {-775.6139,2761.6914,47.2002,178.5629},
    {-842.8282,2752.3252,45.8516,9.0480},
    {-911.5106,2686.1985,42.3703,24.1116}
};
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)