diff --git a/src/conio/bitmap_con.c b/src/conio/bitmap_con.c index 80a820ce3920679a7121d6bed00d976e5c6ea640..7095e84d216b5bf45fe75546d67f4881340c390d 100644 --- a/src/conio/bitmap_con.c +++ b/src/conio/bitmap_con.c @@ -577,13 +577,13 @@ struct blockstate { }; static bool -can_cheat(struct blockstate *restrict bs, struct vmem_cell *restrict vc) +can_cheat(struct blockstate *bs, struct vmem_cell *vc) { return vc->bg == bs->cheat_colour && (vc->ch == ' ') && (vc->font < CONIO_FIRST_FREE_FONT) && !(vc->bg & 0x02000000); } static void -calc_charstate(struct blockstate *restrict bs, struct vmem_cell *restrict vc, struct charstate *restrict cs, int xpos, int ypos) +calc_charstate(struct blockstate *bs, struct vmem_cell *vc, struct charstate *cs, int xpos, int ypos) { bool not_hidden = true; cs->slow = bs->font_data_width != 8;