diff options
| author | Alexander M Pickering <alex@cogarr.net> | 2023-04-17 15:30:18 -0500 |
|---|---|---|
| committer | Alexander M Pickering <alex@cogarr.net> | 2023-04-17 15:30:18 -0500 |
| commit | 9c32850847c46ceab228ae88ccc69e23ae3ff4c7 (patch) | |
| tree | 0346f81629f59f238128c1a2b20c66dbe8a8514f /src/client/initdevice.cpp | |
| parent | 4df14921a3c60e52585b9e30a6737efb53cd5d16 (diff) | |
| download | brokengine-9c32850847c46ceab228ae88ccc69e23ae3ff4c7.tar.gz brokengine-9c32850847c46ceab228ae88ccc69e23ae3ff4c7.tar.bz2 brokengine-9c32850847c46ceab228ae88ccc69e23ae3ff4c7.zip | |
Remove prints in gameloop
Diffstat (limited to 'src/client/initdevice.cpp')
| -rw-r--r-- | src/client/initdevice.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/client/initdevice.cpp b/src/client/initdevice.cpp index 34a07af..15b551f 100644 --- a/src/client/initdevice.cpp +++ b/src/client/initdevice.cpp @@ -179,7 +179,6 @@ IrrlichtDevice* spawnIrrDevice(lua_State* L, char *path){ char filename[pathlen + 1]; sprintf(filename,"%s/%s",path,initname); int iErr = luaL_dofile(L,filename);//ret - /* TODO: This is currently broken SIrrlichtCreationParameters p; if(iErr != 0){ printf("Failed to open lua file:%s\n", filename); @@ -191,17 +190,6 @@ IrrlichtDevice* spawnIrrDevice(lua_State* L, char *path){ printf("Creating device...\n"); IrrlichtDevice* dev = createDeviceEx(p); printf("[OK]\n"); - */ - printf("Creating static device:\n"); - IrrlichtDevice* dev = createDevice( - video::EDT_OPENGL, - core::dimension2d<u32>(640,480), - 16, - false, - false, - false, - 0 - ); if(!dev){ printf("Failed to create device\n"); exit(1); |
