Search:

Type: Posts; User: darryldale; Keyword(s):

Search: Search took 0.00 seconds.

  1. Re: Does mame.exe set errorlevel if it crashes?

    Even better, just throw the alternate launch on the if line:

    mame %1

    if %errorlevel% neq 0 mamealt %1
  2. Re: Does mame.exe set errorlevel if it crashes?

    Got it figured out (answer is it does).

    Batch file is essentially as follows:

    rem launch special version
    mame %1

    rem if it errors out try alternate version
    if %errorlevel% neq 0 goto...
  3. Does mame.exe set errorlevel if it crashes?

    Running mame in a batch file.

    Just wondering if it sets errorlevel at all when it is either run successfully or crashes?

    looking to do something like:

    mame %1
    if errorlevel = 0 goto allow...
Results 1 to 3 of 3