ID:264643
 
Code:
typedef struct{
int x1;
int y1;
int x2;
int y2;
}COORD;

const
COORD
BS={1,1,80,1},
BI={1,50,80,50},
VS={2,3,59,39},
VI={2,42,59,48},
VU={62,3,79,48};


Problem description:
Test.dm:46:warning: /typedef/int: value changed
It send me the error to the BS=(1,1,80,1), Any idea?


That would be C code, not DM code.
In response to Garthor
Heh, ok. its my first time using C and C++.
In response to Gohan Games
Generally, the way to use a programming language is not to attempt to shove it into a compiler for a different language.

C->C++ being an exception, I guess.