Is that warning something normal or do I need to check something?Also, is there any limitation how large a C file must be?I'm having some abnormal execution when I simply add lines like "if (shoot == 1) ..." even when that part is never executed. When I remove it, everything seems ok.
The warning results for the following line:
objetos[0].sprite = G_Nave;
where:
typedef struct {
u8 x, y, z;
u16* sprite;
u8 alto;
u8 ancho;
int offset;
u16* sprite_otro;
u8 alto_otro;
u8 ancho_otro;
int offset_otro;
} TObjetos;
TObjetos objetos[11];
const unsigned char G_Nave = {
0x00, 0x00, 0x00, 0x70, 0x00, 0x00, 0x00,
0x00, 0x00, 0x03, 0x8E, 0x00, 0x00, 0x00,
0x00, 0x00, 0x0C, 0x01, 0x80, 0x00, 0x00,
0x00, 0x00, 0x0C, 0x01, 0x80, 0x00, 0x00, ....}
Thanks.