You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AM2R-TimeTrials/scripts/ds_grid_get_l.gml

8 lines
202 B

// ds_grid_get_l(same functions...)
if (ds_grid_width(argument0) <= argument1 || ds_grid_height(argument0) <= argument2){
return -1;
}else{
return ds_grid_get(argument0,argument1,argument2);
}