summaryrefslogtreecommitdiff
path: root/games/enigma/patches/patch-an
diff options
context:
space:
mode:
Diffstat (limited to 'games/enigma/patches/patch-an')
-rw-r--r--games/enigma/patches/patch-an25
1 files changed, 0 insertions, 25 deletions
diff --git a/games/enigma/patches/patch-an b/games/enigma/patches/patch-an
deleted file mode 100644
index f3b03daebd1..00000000000
--- a/games/enigma/patches/patch-an
+++ /dev/null
@@ -1,25 +0,0 @@
-$NetBSD: patch-an,v 1.3 2005/08/22 15:35:37 adam Exp $
-
---- src/px/video.cc.orig 2004-12-30 13:21:35.000000000 +0000
-+++ src/px/video.cc
-@@ -177,16 +177,16 @@ namespace
-
- void set_pixels(const GS &gs, int n, const int* xlist, const int* ylist, Uint32 color) {
- const int *xp = xlist, *yp = ylist;
-- if (NOCLIP(gs)) {
-+ if (NOCLIP(this->gs)) {
- for (int i=n; i > 0; --i) {
- int x = *xp++, y = *yp++;
-- *pixel_pointer(x,y) = gs.pcolor;
-+ *pixel_pointer(x,y) = this->gs.pcolor;
- }
- } else {
- for (int i=n; i > 0; --i) {
- int x = *xp++, y = *yp++;
-- if (clip_pixel (gs, x, y))
-- *pixel_pointer(x,y) = gs.pcolor;
-+ if (clip_pixel (this->gs, x, y))
-+ *pixel_pointer(x,y) = this->gs.pcolor;
- }
- }
- }