From 63406b40f1a2c9d315ba527a233536c633a0242f Mon Sep 17 00:00:00 2001 From: hiker Date: Fri, 17 Apr 2015 16:13:57 +1000 Subject: [PATCH] Fixed line ending style. --- tools/font_tool/main.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tools/font_tool/main.cpp b/tools/font_tool/main.cpp index 1631ca90b..01b75c7c9 100644 --- a/tools/font_tool/main.cpp +++ b/tools/font_tool/main.cpp @@ -508,18 +508,18 @@ void createGUI(IrrlichtDevice* device, CFontTool* fc) int main(int argc,char **argv) { - SIrrlichtCreationParameters p; - p.DriverType = video::EDT_OPENGL; - p.WindowSize = core::dimension2du(WIDTH, HEIGHT); - p.Bits = 16; - p.Fullscreen = false; - p.Stencilbuffer = false; - p.Vsync = false; - p.EventReceiver = NULL; - p.FileSystem = NULL; - p.ForceLegacyDevice = true; - - IrrlichtDevice *device = createDeviceEx(p); + SIrrlichtCreationParameters p; + p.DriverType = video::EDT_OPENGL; + p.WindowSize = core::dimension2du(WIDTH, HEIGHT); + p.Bits = 16; + p.Fullscreen = false; + p.Stencilbuffer = false; + p.Vsync = false; + p.EventReceiver = NULL; + p.FileSystem = NULL; + p.ForceLegacyDevice = true; + + IrrlichtDevice *device = createDeviceEx(p); video::IVideoDriver* driver = device->getVideoDriver(); scene::ISceneManager* smgr = device->getSceneManager();