diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-12-21 17:38:37 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-12-21 17:38:37 -0500 |
commit | fb630a9fa89264ff5cdd1e82c3b0854e5599731f (patch) | |
tree | d87826e8b309fef0e160bf83e934787b6b918300 /src/kbd.c | |
parent | 3f57b5c8bef01d2d5fc177b354f76d9a7c1bc1e5 (diff) | |
download | seabios-fb630a9fa89264ff5cdd1e82c3b0854e5599731f.tar.gz |
Fix bug in dequeue_key() refactor.
Clearing of Z_FL occurs on the !incr path.
Diffstat (limited to 'src/kbd.c')
-rw-r--r-- | src/kbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -156,7 +156,7 @@ dequeue_key(struct bregs *regs, int incr, int extended) if (buffer_head >= buffer_end) buffer_head = buffer_start; SET_BDA(kbd_buf_head, buffer_head); - + } else { regs->flags &= ~F_ZF; } } |