X-Git-Url: http://git.kpe.io/?p=ctsim.git;a=blobdiff_plain;f=src%2Fctsim.cpp;h=d8c1a079b753ab20b33b262cf8eeb74b773561a8;hp=f181eda72d06269962bce9f9e92325cd87893441;hb=87ab55294bcd767d86786ad1caae8b1b36b49de0;hpb=98f57d3adc542bb7753434ce31c92a6680bd6244 diff --git a/src/ctsim.cpp b/src/ctsim.cpp index f181eda..d8c1a07 100644 --- a/src/ctsim.cpp +++ b/src/ctsim.cpp @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: ctsim.cpp,v 1.120 2002/10/24 15:54:25 kevin Exp $ +** $Id: ctsim.cpp,v 1.121 2003/01/24 05:24:18 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -69,7 +69,7 @@ #endif #endif -static const char* rcsindent = "$Id: ctsim.cpp,v 1.120 2002/10/24 15:54:25 kevin Exp $"; +static const char* rcsindent = "$Id: ctsim.cpp,v 1.121 2003/01/24 05:24:18 kevin Exp $"; struct option CTSimApp::ctsimOptions[] = { @@ -110,7 +110,11 @@ CTSimApp::OnInit() bool bPrintFiles = false; // process options while (1) { +#ifdef __WXMAC__ + int c = -1; +#else int c = getopt_long (argc, argv, "", ctsimOptions, NULL); +#endif if (c == -1) break;