Removed already implemented graphic capability flags, and used CLIP inside scummvm_draw_line() to clean up the code a bit

svn-id: r38451
This commit is contained in:
Filippos Karapetis 2009-02-17 22:53:09 +00:00
parent ddbad0197b
commit 53ef1bd4fd
7 changed files with 25 additions and 117 deletions

View file

@ -456,8 +456,7 @@ kGameIsRestarting(state_t *s, int funct_nr, int argc, reg_t *argv) {
reg_t
kHaveMouse(state_t *s, int funct_nr, int argc, reg_t *argv) {
return make_reg(0, (s->have_mouse_flag
&& gfxop_have_mouse(s->gfx_state)) ? -1 : 0);
return make_reg(0, -1);
}