From 203fa09dce5d0803e9d20f94080771e2768ebb25 Mon Sep 17 00:00:00 2001 From: waltje Date: Sat, 6 Oct 2018 19:45:53 -0400 Subject: [PATCH] More updates. --- src/devices/ports/parallel_dev.c | 4 ++-- src/devices/printer/prt_escp.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/devices/ports/parallel_dev.c b/src/devices/ports/parallel_dev.c index 8a63682..a31e1b5 100644 --- a/src/devices/ports/parallel_dev.c +++ b/src/devices/ports/parallel_dev.c @@ -8,7 +8,7 @@ * * Implementation of the parallel-port-attached devices. * - * Version: @(#)parallel_dev.c 1.0.8 2018/09/03 + * Version: @(#)parallel_dev.c 1.0.9 2018/10/06 * * Author: Fred N. van Kempen, * @@ -69,7 +69,7 @@ static const struct { { "lpt_dac", NULL, &lpt_dac_device }, { "lpt_dac_stereo", NULL, &lpt_dac_stereo_device }, -#if USE_PRINTER +#ifdef USE_PRINTER /* Experimental, WIP --FvK */ { "lpt_printer", NULL, &lpt_printer_device }, #endif diff --git a/src/devices/printer/prt_escp.c b/src/devices/printer/prt_escp.c index d0fe932..f98683c 100644 --- a/src/devices/printer/prt_escp.c +++ b/src/devices/printer/prt_escp.c @@ -8,7 +8,7 @@ * * Implementation of the Generic ESC/P Dot-Matrix printer. * - * Version: @(#)prt_escp.c 1.0.2 2018/10/05 + * Version: @(#)prt_escp.c 1.0.3 2018/10/06 * * Authors: Michael Drüing, * Fred N. van Kempen, @@ -63,7 +63,7 @@ #include "../../mem.h" #include "../../rom.h" #include "../../plat.h" -#include "../ui/ui.h" +#include "../../ui/ui.h" #include "../../png.h" #include "../ports/parallel_dev.h" #include "printer.h"