openbsd-ports/games/crack-attack/patches/patch-src_gtk-gui_support_cxx
ajacoutot e706554bf8 Import crack-attack-1.1.14
A free OpenGL game based on the Super Nintendo classic Tetris Attack.
Slowly, your stack of blocks grows from the bottom, and you've got to
make sure it never reaches the top. Because, once it does, you lose!
To eliminate blocks from the stack, line up at least three of one color,
horizontally or vertically.
To add to the excitement, chunks of red garbage will fall from above. It
is impossible to eliminate this garbage directly. However, if you
eliminate any blocks which are touching the garbage, the garbage will
shatter into normal, run-of-the-mill blocks.


from Mattieu Baptiste <mattieu.b at free dot fr> with some tweaks by me
2007-10-19 19:31:33 +00:00

13 lines
530 B
Plaintext

$OpenBSD: patch-src_gtk-gui_support_cxx,v 1.1.1.1 2007/10/19 19:31:33 ajacoutot Exp $
--- src/gtk-gui/support.cxx.orig Thu Apr 28 23:42:49 2005
+++ src/gtk-gui/support.cxx Fri Oct 19 18:16:51 2007
@@ -59,7 +59,7 @@ lookup_widget (GtkWidget
found_widget = (GtkWidget*) g_object_get_data (G_OBJECT (widget),
widget_name);
if (!found_widget)
- g_warning ("Widget not found: %s", widget_name);
+ gtk_main_quit();
return found_widget;
}