From 037ebfd42544a231ebf12518097d508a237d6c34 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Mon, 21 Jan 2013 13:11:58 +0000 Subject: [PATCH] core: pass the project directory to the binary build and get rid of that 2-year old "temporary Win32 hack". --- neercs/neercs.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/neercs/neercs.cpp b/neercs/neercs.cpp index a77d94f..23546f0 100644 --- a/neercs/neercs.cpp +++ b/neercs/neercs.cpp @@ -8,10 +8,6 @@ # include "config.h" #endif -#if defined _WIN32 -# include -#endif - #if defined _XBOX # define _USE_MATH_DEFINES /* for M_PI */ # include @@ -74,12 +70,6 @@ int main(int argc, char **argv) Application app("Neercs", ivec2(800, 600), 60.0f); -#if defined _MSC_VER && !defined _XBOX - _chdir("../.."); -#elif defined _WIN32 && !defined _XBOX - _chdir("../.."); -#endif - new Neercs(argc, argv); app.ShowPointer(false);