Mercurial > sdl-ios-xcode
view EXCLUDE/GLTSF/src/Main.cpp @ 4743:f25518de3ee5
Fixed window title (from GLTSF to GLIMM).
author | dewyatt |
---|---|
date | Sun, 04 Jul 2010 06:15:42 -0400 |
parents | 0c7c67d4e6ee |
children |
line wrap: on
line source
#include "App.hpp" #include <stdexcept> int main(int argc, char *argv[]) { int Result = EXIT_SUCCESS; try { App theApp; theApp.Run(); } catch (const std::exception& e) { printf("Error: %s\n", e.what()); Result = EXIT_FAILURE; } catch (...) { printf("Unhandled exception\n"); Result = EXIT_FAILURE; } system("PAUSE"); return Result; }