Bugfix for no logging in HDC.

This commit is contained in:
waltje
2018-04-20 18:42:01 -04:00
parent 756263d52e
commit 917c0e9dd0
2 changed files with 5 additions and 3 deletions

View File

@@ -8,7 +8,7 @@
*
* Common code to handle all sorts of disk controllers.
*
* Version: @(#)hdc.c 1.0.8 2018/04/14
* Version: @(#)hdc.c 1.0.9 2018/04/20
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -37,6 +37,7 @@
#include <stdio.h>
#include <stdint.h>
#include <string.h>
#include <stdarg.h>
#include <wchar.h>
#define HAVE_STDARG_H
#include "../emu.h"
@@ -160,7 +161,7 @@ static const struct {
void
hdc_log(const char *fmt, ...)
{
#ifdef ENABLE_IDE_LOG
#ifdef ENABLE_HDC_LOG
va_list ap;
if (hdc_do_log) {

View File

@@ -8,7 +8,7 @@
*
* Definitions for the common disk controller handler.
*
* Version: @(#)hdc.h 1.0.8 2018/04/14
* Version: @(#)hdc.h 1.0.9 2018/04/20
*
* Authors: Fred N. van Kempen, <decwiz@yahoo.com>
* Miran Grca, <mgrca8@gmail.com>
@@ -63,6 +63,7 @@ extern const device_t esdi_at_wd1007vse1_device; /* esdi_at */
extern const device_t esdi_ps2_device; /* esdi_mca */
extern const device_t xta_isa_device; /* xta_isa */
extern const device_t xta_ps1_device; /* xta_ps1 */
extern const device_t xtide_device; /* xtide_xt */
extern const device_t xtide_acculogic_device; /* xtide_ps2 */