From 959831f4ef5a3e797f576c3de08cd65032c997ad Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sun, 13 Jan 2013 18:54:10 +1000 Subject: Remove damned ancient DOS line endings from Irrlicht. Hopefully I did not go overboard. --- libraries/irrlicht-1.8/include/driverChoice.h | 90 +++++++++++++-------------- 1 file changed, 45 insertions(+), 45 deletions(-) (limited to 'libraries/irrlicht-1.8/include/driverChoice.h') diff --git a/libraries/irrlicht-1.8/include/driverChoice.h b/libraries/irrlicht-1.8/include/driverChoice.h index d418ba8..8f17c38 100644 --- a/libraries/irrlicht-1.8/include/driverChoice.h +++ b/libraries/irrlicht-1.8/include/driverChoice.h @@ -1,45 +1,45 @@ -// Copyright (C) 2009-2012 Christian Stehno -// This file is part of the "Irrlicht Engine". -// For conditions of distribution and use, see copyright notice in irrlicht.h - -#ifndef __E_DRIVER_CHOICE_H_INCLUDED__ -#define __E_DRIVER_CHOICE_H_INCLUDED__ - -#include -#include -#include "EDriverTypes.h" -#include "irrTypes.h" -#include "IrrlichtDevice.h" - -namespace irr -{ - -//! ask user for driver -static irr::video::E_DRIVER_TYPE driverChoiceConsole(bool allDrivers=true) -{ - const char* const names[] = {"NullDriver","Software Renderer","Burning's Video","Direct3D 8.1","Direct3D 9.0c","OpenGL 1.x/2.x/3.x"}; - printf("Please select the driver you want:\n"); - irr::u32 i=0; - for (i=irr::video::EDT_COUNT; i>0; --i) - { - if (allDrivers || (irr::IrrlichtDevice::isDriverSupported(irr::video::E_DRIVER_TYPE(i-1)))) - printf(" (%c) %s\n", 'a'+irr::video::EDT_COUNT-i, names[i-1]); - } - - char c; - std::cin >> c; - c = irr::video::EDT_COUNT+'a'-c; - - for (i=irr::video::EDT_COUNT; i>0; --i) - { - if (!(allDrivers || (irr::IrrlichtDevice::isDriverSupported(irr::video::E_DRIVER_TYPE(i-1))))) - --c; - if ((char)i==c) - return irr::video::E_DRIVER_TYPE(i-1); - } - return irr::video::EDT_COUNT; -} - -} // end namespace irr - -#endif +// Copyright (C) 2009-2012 Christian Stehno +// This file is part of the "Irrlicht Engine". +// For conditions of distribution and use, see copyright notice in irrlicht.h + +#ifndef __E_DRIVER_CHOICE_H_INCLUDED__ +#define __E_DRIVER_CHOICE_H_INCLUDED__ + +#include +#include +#include "EDriverTypes.h" +#include "irrTypes.h" +#include "IrrlichtDevice.h" + +namespace irr +{ + +//! ask user for driver +static irr::video::E_DRIVER_TYPE driverChoiceConsole(bool allDrivers=true) +{ + const char* const names[] = {"NullDriver","Software Renderer","Burning's Video","Direct3D 8.1","Direct3D 9.0c","OpenGL 1.x/2.x/3.x"}; + printf("Please select the driver you want:\n"); + irr::u32 i=0; + for (i=irr::video::EDT_COUNT; i>0; --i) + { + if (allDrivers || (irr::IrrlichtDevice::isDriverSupported(irr::video::E_DRIVER_TYPE(i-1)))) + printf(" (%c) %s\n", 'a'+irr::video::EDT_COUNT-i, names[i-1]); + } + + char c; + std::cin >> c; + c = irr::video::EDT_COUNT+'a'-c; + + for (i=irr::video::EDT_COUNT; i>0; --i) + { + if (!(allDrivers || (irr::IrrlichtDevice::isDriverSupported(irr::video::E_DRIVER_TYPE(i-1))))) + --c; + if ((char)i==c) + return irr::video::E_DRIVER_TYPE(i-1); + } + return irr::video::EDT_COUNT; +} + +} // end namespace irr + +#endif -- cgit v1.1