aboutsummaryrefslogtreecommitdiff
path: root/lib/libvgl
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2019-03-24 20:43:21 +0000
committerBruce Evans <bde@FreeBSD.org>2019-03-24 20:43:21 +0000
commit31d09534f862ba0bfa3ccdba38d2e50532714cb6 (patch)
treee9827b523b172facd5f89bec24a373650aaf44f1 /lib/libvgl
parent8d8b448919341e94aaedc6911b6240a51c16f2f3 (diff)
downloadsrc-31d09534f862ba0bfa3ccdba38d2e50532714cb6.tar.gz
src-31d09534f862ba0bfa3ccdba38d2e50532714cb6.zip
Notes
Diffstat (limited to 'lib/libvgl')
-rw-r--r--lib/libvgl/vgl.32
-rw-r--r--lib/libvgl/vgl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libvgl/vgl.3 b/lib/libvgl/vgl.3
index 749ca3b65576..effc4ffab812 100644
--- a/lib/libvgl/vgl.3
+++ b/lib/libvgl/vgl.3
@@ -127,7 +127,7 @@
.Ft void
.Fn VGLSetPaletteIndex "byte color" "byte red" "byte green" "byte blue"
.Ft void
-.Fn VGLSetBorder "u_long color"
+.Fn VGLSetBorder "byte color"
.Ft int
.Fn VGLSetVScreenSize "VGLBitmap *object" "int vxsize" "int vysize"
.Ft int
diff --git a/lib/libvgl/vgl.h b/lib/libvgl/vgl.h
index ca5779ab8028..48d2dbf39765 100644
--- a/lib/libvgl/vgl.h
+++ b/lib/libvgl/vgl.h
@@ -146,7 +146,7 @@ void VGLRestorePalette(void);
void VGLSavePalette(void);
void VGLSetPalette(byte *red, byte *green, byte *blue);
void VGLSetPaletteIndex(byte color, byte red, byte green, byte blue);
-void VGLSetBorder(u_long color);
+void VGLSetBorder(byte color);
void VGLBlankDisplay(int blank);
/* text.c */
int VGLTextSetFontFile(char *filename);