mirror of
https://github.com/opnsense/src.git
synced 2026-06-03 22:02:58 -04:00
Always set the bell_pitch to 800. This catch up with the sysbeep() argument
changing.
This commit is contained in:
parent
a3526bf049
commit
f2ca4c3ad4
2 changed files with 1 additions and 8 deletions
|
|
@ -43,10 +43,6 @@
|
|||
|
||||
#define KANJI 1
|
||||
|
||||
#define BELL_DURATION 5
|
||||
#define BELL_PITCH_8M 1339
|
||||
#define BELL_PITCH_5M 1678
|
||||
|
||||
#define UJIS 0
|
||||
#define SJIS 1
|
||||
|
||||
|
|
|
|||
|
|
@ -214,10 +214,7 @@ sc_get_bios_values(bios_values_t *values)
|
|||
values->cursor_start = 15;
|
||||
values->cursor_end = 16;
|
||||
values->shift_state = 0;
|
||||
if (pc98_machine_type & M_8M)
|
||||
values->bell_pitch = BELL_PITCH_8M;
|
||||
else
|
||||
values->bell_pitch = BELL_PITCH_5M;
|
||||
values->bell_pitch = BELL_PITCH;
|
||||
}
|
||||
|
||||
int
|
||||
|
|
|
|||
Loading…
Reference in a new issue