From 7a2ec456cf7261a6cee1b93c764b98850e9c6b26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sat, 20 Nov 2010 17:24:18 +0000 Subject: [PATCH] For now only output debug text on screen if framebuffer is not enabled. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39542 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/boot/platform/atari_m68k/debug.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/system/boot/platform/atari_m68k/debug.cpp b/src/system/boot/platform/atari_m68k/debug.cpp index 3defe36cdd..8de10826e9 100644 --- a/src/system/boot/platform/atari_m68k/debug.cpp +++ b/src/system/boot/platform/atari_m68k/debug.cpp @@ -7,6 +7,7 @@ #include "keyboard.h" #include "toscalls.h" +#include #include #include #include @@ -62,6 +63,7 @@ dprintf(const char *format, ...) nat_feat_debugprintf(buffer); //if (platform_boot_options() & BOOT_OPTION_DEBUG_OUTPUT) + if (!gKernelArgs.frame_buffer.enabled) Bconput(DEV_CONSOLE, buffer); }