summaryrefslogtreecommitdiffstats
path: root/lib/libvgl/vgl.h
diff options
context:
space:
mode:
authoryokota <yokota@FreeBSD.org>1999-11-09 12:11:24 +0000
committeryokota <yokota@FreeBSD.org>1999-11-09 12:11:24 +0000
commit6575a957bcaa200c95d0f67a907d3af85cbe9974 (patch)
tree899d7bfe1cca62fb894e901416f160970e9879ee /lib/libvgl/vgl.h
parent1c9f0625c8ed7b226cf3ef2fc4fb0d22dee36a1e (diff)
downloadFreeBSD-src-6575a957bcaa200c95d0f67a907d3af85cbe9974.zip
FreeBSD-src-6575a957bcaa200c95d0f67a907d3af85cbe9974.tar.gz
Fix the VGLBITMAP_INITIALIZER macro; VXsize and VYsize should
be the same as Xsize and Ysize.
Diffstat (limited to 'lib/libvgl/vgl.h')
-rw-r--r--lib/libvgl/vgl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libvgl/vgl.h b/lib/libvgl/vgl.h
index 4aa34c6..54c58bf 100644
--- a/lib/libvgl/vgl.h
+++ b/lib/libvgl/vgl.h
@@ -43,7 +43,7 @@ typedef struct {
} VGLBitmap;
#define VGLBITMAP_INITIALIZER(t, x, y, bits) \
- { (t), (x), (y), 0, 0, 0, 0, (bits) }
+ { (t), (x), (y), (x), (y), 0, 0, (bits) }
/*
* Defined Type's
OpenPOWER on IntegriCloud