aboutsummaryrefslogtreecommitdiffstats
path: root/vgasrc/stdvga.c
diff options
context:
space:
mode:
Diffstat (limited to 'vgasrc/stdvga.c')
-rw-r--r--vgasrc/stdvga.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/vgasrc/stdvga.c b/vgasrc/stdvga.c
index 149c88a8..63700d41 100644
--- a/vgasrc/stdvga.c
+++ b/vgasrc/stdvga.c
@@ -86,9 +86,9 @@ stdvga_get_all_palette_reg(u16 seg, u8 *data_far)
// Set blinking mode (when enabled, palette index bit 0x08 indicates blinking)
void
-stdvga_toggle_intensity(u8 flag)
+stdvga_set_palette_blinking(u8 enable_blink)
{
- stdvga_attr_mask(0x10, 0x08, (flag & 0x01) << 3);
+ stdvga_attr_mask(0x10, 0x08, (enable_blink & 0x01) << 3);
}
void