aboutsummaryrefslogtreecommitdiff
path: root/lib/libvgl/vgl.h
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/vgl.h
parent8d8b448919341e94aaedc6911b6240a51c16f2f3 (diff)
downloadsrc-31d09534f862ba0bfa3ccdba38d2e50532714cb6.tar.gz
src-31d09534f862ba0bfa3ccdba38d2e50532714cb6.zip
Oops, my previous commit to libvgl was missing the change of VGLSetBorder()
to match the change in its declaration. Change the declaration back to "byte color" since setting of the border color is not supported for more than 256 colors.
Notes
Notes: svn path=/head/; revision=345486
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 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);