- correct stupid problem that I caused yesterday. Must use #if for

BX_WITH_MACOS, not #ifdef!!!
This commit is contained in:
Bryce Denney 2001-09-26 15:22:52 +00:00
parent d614265f58
commit d4905da165
1 changed files with 1 additions and 1 deletions

View File

@ -1057,7 +1057,7 @@ bx_find_bochsrc ()
case 1: strcpy (rcfile, "bochsrc"); break;
case 2: strcpy (rcfile, "bochsrc.txt"); break;
case 3:
#if (!defined(WIN32)) && !defined(BX_WITH_MACOS)
#if (!defined(WIN32)) && !BX_WITH_MACOS
// only try this on unix
{
char *ptr = getenv("HOME");