mode_is_ok TIENE ERRORES

Started by l1nk3rn3l, March 14, 2016, 11:39:52 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

l1nk3rn3l

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);

panreyes

He corregido el bug. Actualmente mode_is_ok es un stub y estaba devolviendo 0 (false) en vez de 1 (true).