diff options
author | yokota <yokota@FreeBSD.org> | 1999-11-09 12:11:24 +0000 |
---|---|---|
committer | yokota <yokota@FreeBSD.org> | 1999-11-09 12:11:24 +0000 |
commit | 6575a957bcaa200c95d0f67a907d3af85cbe9974 (patch) | |
tree | 899d7bfe1cca62fb894e901416f160970e9879ee /lib | |
parent | 1c9f0625c8ed7b226cf3ef2fc4fb0d22dee36a1e (diff) | |
download | FreeBSD-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')
-rw-r--r-- | lib/libvgl/vgl.h | 2 |
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 |