From 880a21f699b58c8aad10651cbd2a4461f8927a3e Mon Sep 17 00:00:00 2001 From: smcameron Date: Sun, 9 Aug 2009 13:35:31 +0000 Subject: [PATCH] * Removed graph paper effect in --bw mode. --- wordwarvi.c | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/wordwarvi.c b/wordwarvi.c index 83be318..6afd7b8 100644 --- a/wordwarvi.c +++ b/wordwarvi.c @@ -2504,20 +2504,6 @@ void do_weak_rumble() play_rumble_effect(RUMBLE_WEAK_RUMBLE_EFFECT); } -void draw_graphpaper(GtkWidget *w) -{ - int i; - static GdkColor absolute_cyan = - /* Not sure this 65535 pixel value is kosher, cribbed empirically... */ - {/*pixel=*/65535, /*red=*/0, /*green=*/65535, /*blue=*/65535 }; - gdk_gc_set_foreground(gc, &absolute_cyan); - - for (i=10 - (game_state.x & 0x1f);iwindow, gc, i, 0, i, SCREEN_HEIGHT); - for (i=10 - (game_state.y & 0x1f);iwindow, gc, 0, i, SCREEN_WIDTH, i); -} - void incorrect_draw_stars(GtkWidget *w) { short i; @@ -10620,9 +10606,6 @@ static int main_da_expose(GtkWidget *w, GdkEvent *event, gpointer p) static int last_lowx = 0, last_highx = TERRAIN_LENGTH-1; /* int last_lowx = 0, last_highx = TERRAIN_LENGTH-1;*/ - if (no_colors_any_more) - draw_graphpaper(w); - if (timer_event == START_INTERMISSION_EVENT) { do_intermission(w, event, p); return 0;