- use #ifs instead of #ifdefs for slowdown timer code. The

usual autoconf/configure method is to use 0 vs 1, not defined vs
  undefined to turn things on.
This commit is contained in:
Bryce Denney 2001-09-24 05:08:25 +00:00
parent 140a7a23b8
commit 53d483864c
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#include "bochs.h"
#include <errno.h>
#ifdef BX_USE_SLOWDOWN_TIMER
#if BX_USE_SLOWDOWN_TIMER
#define BX_HAVE_USLEEP 1

View File

@ -1,5 +1,5 @@
#ifdef BX_USE_SLOWDOWN_TIMER
#if BX_USE_SLOWDOWN_TIMER
class bx_slowdown_timer_c {