diff options
author | H. Peter Anvin <hpa@zytor.com> | 2006-08-31 15:48:26 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2006-08-31 15:48:26 -0700 |
commit | 6f00093c652fdbf1c9679100cc21906314b2a859 (patch) | |
tree | 57181cc3f0d3b5313046f5c7bd579824dee25888 /com32/samples/vesa.c | |
parent | 0c04c3635c840e8959705900a89c072cb42a5864 (diff) | |
download | syslinux-elf-6f00093c652fdbf1c9679100cc21906314b2a859.tar.gz syslinux-elf-6f00093c652fdbf1c9679100cc21906314b2a859.tar.xz syslinux-elf-6f00093c652fdbf1c9679100cc21906314b2a859.zip |
More work on actual VESA console and menu. Shadowing still doesn't work
quite right, however.
Diffstat (limited to 'com32/samples/vesa.c')
-rw-r--r-- | com32/samples/vesa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/samples/vesa.c b/com32/samples/vesa.c index 6d148ae6..159a55d7 100644 --- a/com32/samples/vesa.c +++ b/com32/samples/vesa.c @@ -18,7 +18,7 @@ int main(void) for (attr = 0; attr < 256; attr++) { snprintf(attr_buf, sizeof attr_buf, " [%02X] ", attr); - vesacon_write_at(row, col, attr_buf, attr, attr & 3); + __vesacon_write_at(row, col, attr_buf, attr, attr & 3); row++; if (row >= 29) { row = 0; |