diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2011-07-05 20:56:07 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2011-07-05 20:56:07 -0400 |
commit | 422263deac25e45301bd069b1a0d680db55a31d9 (patch) | |
tree | 2824ea429620bc3c1d0c9bb3e600b04239062540 /src/output.c | |
parent | 8b0c509e7cdb55b0ebd58cc105e49e75526ba620 (diff) | |
download | seabios-hppa-422263deac25e45301bd069b1a0d680db55a31d9.zip seabios-hppa-422263deac25e45301bd069b1a0d680db55a31d9.tar.gz seabios-hppa-422263deac25e45301bd069b1a0d680db55a31d9.tar.bz2 |
Replace CONFIG_SCREEN_AND_DEBUG with "etc/screen-and-debug" file.
Diffstat (limited to 'src/output.c')
-rw-r--r-- | src/output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output.c b/src/output.c index 7c10d33..5c91ae5 100644 --- a/src/output.c +++ b/src/output.c @@ -115,7 +115,7 @@ screenc(char c) static void putc_screen(struct putcinfo *action, char c) { - if (CONFIG_SCREEN_AND_DEBUG) + if (ScreenAndDebug) putc_debug(&debuginfo, c); if (c == '\n') screenc('\r'); @@ -363,7 +363,7 @@ printf(const char *fmt, ...) va_start(args, fmt); bvprintf(&screeninfo, fmt, args); va_end(args); - if (CONFIG_SCREEN_AND_DEBUG) + if (ScreenAndDebug) debug_serial_flush(); } |