PREPARANDO LOS EJEMPLOS PARA CREAR EL EDITOR TODO INCLUIDO (PIXTUDIO PACK)
NOS ENCONTRAMOS CON UN BUG............
if(!mode_is_ok(640, 480, 16, MODE_WINDOW))
return -1;
end;
AUN USANDO 32 BITS SE SALEEEEEEEEE
if(!mode_is_ok(640, 480, 32, MODE_WINDOW))
return -1;
end;
================
POR EL MOMENTO PARA PUBLICAR LOS EJEMPLOS CON EL EDITOR (PIXTUDIO PACK)... NOS TOCA ASI........
// Check that we can set the video mode before actually setting it
if(!mode_is_ok(scr_width, scr_height, 16, MODE_WINDOW))
//return -1;
end;
set_mode(scr_width, scr_height, 16);
He corregido el bug. Actualmente mode_is_ok es un stub y estaba devolviendo 0 (false) en vez de 1 (true).