- 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:
parent
140a7a23b8
commit
53d483864c
@ -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
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
|
||||
#ifdef BX_USE_SLOWDOWN_TIMER
|
||||
#if BX_USE_SLOWDOWN_TIMER
|
||||
|
||||
class bx_slowdown_timer_c {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user