From 944c8790f5a754f5881620e2006967b3c47c60e4 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Mon, 8 Oct 2012 11:05:36 +0000 Subject: [PATCH] win32: fix working directory code in monsterz and neercs. --- neercs/neercs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neercs/neercs.cpp b/neercs/neercs.cpp index 8cc749c..2c367ab 100644 --- a/neercs/neercs.cpp +++ b/neercs/neercs.cpp @@ -74,7 +74,7 @@ int main(int argc, char **argv) Application app("Neercs", ivec2(800, 600), 60.0f); #if defined _MSC_VER && !defined _XBOX - _chdir(".."); + _chdir("../.."); #elif defined _WIN32 && !defined _XBOX _chdir("../.."); #endif