|
|
@@ -118,7 +118,8 @@ void _sqstd_compiler_error(HSQUIRRELVM v,const SQChar *sErr,const SQChar *sSourc
|
|
|
{
|
|
|
SQPRINTFUNCTION pf = sq_geterrorfunc(v);
|
|
|
if(pf) {
|
|
|
- pf(v,_SC("%s line = (%d) column = (%d) : error %s\n"),sSource,line,column,sErr);
|
|
|
+ //pf(v,_SC("%s line = (%d) column = (%d) : error %s\n"),sSource,line,column,sErr);
|
|
|
+ pf(v,_SC("%s:%d:%d : error %s\n"),sSource,line,column,sErr);
|
|
|
}
|
|
|
}
|
|
|
|