X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fgui%2Fapp.cpp;h=d6875160132d9b9219fff8201f5550e15a2b0010;hb=26016bedcbd13e0c95245a5dda6c9001a73e5889;hp=f3481e9ab4e74736de0d01d9a2b91017addc7afb;hpb=786e438a8bcaf738b84ab79733015ea2b1f4bbb9;p=virtualjaguar diff --git a/src/gui/app.cpp b/src/gui/app.cpp index f3481e9..d687516 100644 --- a/src/gui/app.cpp +++ b/src/gui/app.cpp @@ -40,8 +40,15 @@ int main(int argc, char * argv[]) { printf("Virtual Jaguar 2.0.0 help\n"); printf("\n"); - printf("Command line interface is non-functional ATM, but may return if there is\n" - "enough demand for it. :-)\n"); + printf("Command line interface is mostly non-functional ATM, but may return if\n" + "there is enough demand for it. :-)\n"); + return 0; + } + if (strcmp(argv[1], "--yarrr") == 0) + { + printf("\n"); + printf("Shiver me timbers!\n"); + printf("\n"); return 0; } if ((strcmp(argv[1], "--alpine") == 0) || (strcmp(argv[1], "-a") == 0)) @@ -56,9 +63,12 @@ int main(int argc, char * argv[]) // This is so we can pass this stuff using signal/slot mechanism... //ick int id = qRegisterMetaType(); - LogInit("virtualjaguar.log"); // Init logfile + bool success = (bool)LogInit("virtualjaguar.log"); // Init logfile int retVal = -1; // Default is failure + if (!success) + printf("Failed to open virtualjaguar.log for writing!\n"); + // Set up SDL library if (SDL_Init(SDL_INIT_JOYSTICK | SDL_INIT_AUDIO) < 0) {