From f9158592e1478b2013afc7041d9ed041cf2d2f4a Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 13 Jan 2014 19:47:58 +1000 Subject: Update Irrlicht to 1.8.1. Include actual change markers this time. lol --- libraries/irrlicht-1.8/examples/Demo/main.cpp | 49 --------------------------- 1 file changed, 49 deletions(-) delete mode 100644 libraries/irrlicht-1.8/examples/Demo/main.cpp (limited to 'libraries/irrlicht-1.8/examples/Demo/main.cpp') diff --git a/libraries/irrlicht-1.8/examples/Demo/main.cpp b/libraries/irrlicht-1.8/examples/Demo/main.cpp deleted file mode 100644 index a21b48e..0000000 --- a/libraries/irrlicht-1.8/examples/Demo/main.cpp +++ /dev/null @@ -1,49 +0,0 @@ -// This is a Demo of the Irrlicht Engine (c) 2005-2009 by N.Gebhardt. -// This file is not documented. - -#include -#ifdef _IRR_WINDOWS_ -#include -#endif - -#include - -#include "CMainMenu.h" -#include "CDemo.h" - -using namespace irr; - -#ifdef _WIN32 - -#pragma comment(lib, "Irrlicht.lib") -INT WINAPI WinMain( HINSTANCE hInst, HINSTANCE, LPSTR strCmdLine, INT ) -#else -int main(int argc, char* argv[]) -#endif -{ - bool fullscreen = false; - bool music = true; - bool shadows = false; - bool additive = false; - bool vsync = false; - bool aa = false; - -#ifndef _IRR_WINDOWS_ - video::E_DRIVER_TYPE driverType = video::EDT_OPENGL; -#else - video::E_DRIVER_TYPE driverType = video::EDT_DIRECT3D9; -#endif - - CMainMenu menu; - -//#ifndef _DEBUG - if (menu.run(fullscreen, music, shadows, additive, vsync, aa, driverType)) -//#endif - { - CDemo demo(fullscreen, music, shadows, additive, vsync, aa, driverType); - demo.run(); - } - - return 0; -} - -- cgit v1.1