~swag/armagetronad/0.2.9-sty+ct+ap-fork

« back to all changes in this revision

Viewing changes to src/tools/tError.cpp

  • Committer: Voodoo
  • Date: 2011-07-28 18:46:18 UTC
  • mfrom: (563.24.161 merge)
  • Revision ID: voodoo-20110728184618-0djbrm75ftd07c4v
merge -r 1285..1297 lp:armagetronad/0.2.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
{
58
58
    std::cerr << caption << ": " << message << "\n";
59
59
    st_Breakpoint();
60
 
    static bool error = true; // to disable the error if it is inconvenient right now and you think it may not be fatal
 
60
    static bool error = false; // to disable the error if it is inconvenient right now and you think it may not be fatal
61
61
    if ( error )
62
62
    {
63
 
        throw 1; //tSimpleException( message, caption );
 
63
        // throw 1; //tSimpleException( message, caption );
64
64
        exit(-1);
65
65
    }
66
66
}