erkyrath / quixe

A Glulx VM interpreter written in Javascript
http://eblong.com/zarf/glulx/
MIT License
169 stars 33 forks source link

Setting graphics background color and clearing doesn't work right #11

Closed erkyrath closed 8 years ago

erkyrath commented 8 years ago

http://www.intfiction.org/forum/viewtopic.php?f=7&t=19261

[ ReColorSub;
    if (~~gg_graphwin)
        print_ret "There is no graphics window.";
    glk_window_set_background_color(gg_graphwin, parsed_number);
    glk_window_clear(gg_graphwin);
    print_ret "Set default window color to ", (Hex6) parsed_number, ", then erased.";
];
erkyrath commented 8 years ago

Fixed.