diff --git a/Makefile.bundle.in b/Makefile.bundle.in
index b7c8d2f8da..d9cf9467ef 100644
--- a/Makefile.bundle.in
+++ b/Makefile.bundle.in
@@ -151,8 +151,8 @@ bundle_exe: all
@echo '[BUNDLE] Creating $(BUNDLE_NAME).exe'
$(Q)mkdir -p "$(BUNDLES_DIR)"
$(Q)unix2dos "$(ROOT_DIR)/docs/"* "$(ROOT_DIR)/readme.txt" "$(ROOT_DIR)/COPYING" "$(ROOT_DIR)/changelog.txt" "$(ROOT_DIR)/known-bugs.txt"
- $(Q)cd $(ROOT_DIR)/os/win32/installer && makensis.exe //DVERSION_INCLUDE=version_$(PLATFORM).txt install.nsi
- $(Q)mv $(ROOT_DIR)/os/win32/installer/*$(PLATFORM).exe "$(BUNDLES_DIR)/$(BUNDLE_NAME).exe"
+ $(Q)cd $(ROOT_DIR)/os/windows/installer && makensis.exe //DVERSION_INCLUDE=version_$(PLATFORM).txt install.nsi
+ $(Q)mv $(ROOT_DIR)/os/windows/installer/*$(PLATFORM).exe "$(BUNDLES_DIR)/$(BUNDLE_NAME).exe"
ifdef OSXAPP
install:
diff --git a/projects/openttd_vs80.vcproj b/projects/openttd_vs80.vcproj
index 566353e7bb..a9d20174d9 100644
--- a/projects/openttd_vs80.vcproj
+++ b/projects/openttd_vs80.vcproj
@@ -735,10 +735,6 @@
RelativePath=".\..\src\tgp.cpp"
>
-
-
@@ -1503,10 +1499,6 @@
RelativePath=".\..\src\tgp.h"
>
-
-
@@ -3580,6 +3572,18 @@
>
+
+
+
+
+
+
-
-
@@ -1500,10 +1496,6 @@
RelativePath=".\..\src\tgp.h"
>
-
-
@@ -3577,6 +3569,18 @@
>
+
+
+
+
+
+
#include
diff --git a/src/thread_none.cpp b/src/thread/thread_none.cpp
similarity index 98%
rename from src/thread_none.cpp
rename to src/thread/thread_none.cpp
index 1893aebd2d..861f2cfd6d 100644
--- a/src/thread_none.cpp
+++ b/src/thread/thread_none.cpp
@@ -9,7 +9,7 @@
/** @file thread_none.cpp No-Threads-Available implementation of Threads */
-#include "stdafx.h"
+#include "../stdafx.h"
#include "thread.h"
/* static */ bool ThreadObject::New(OTTDThreadFunc proc, void *param, ThreadObject **thread)
diff --git a/src/thread_os2.cpp b/src/thread/thread_os2.cpp
similarity index 99%
rename from src/thread_os2.cpp
rename to src/thread/thread_os2.cpp
index 18122fe153..1145e8e414 100644
--- a/src/thread_os2.cpp
+++ b/src/thread/thread_os2.cpp
@@ -9,7 +9,7 @@
/** @file thread_os2.cpp OS/2 implementation of Threads. */
-#include "stdafx.h"
+#include "../stdafx.h"
#include "thread.h"
#define INCL_DOS
diff --git a/src/thread_pthread.cpp b/src/thread/thread_pthread.cpp
similarity index 99%
rename from src/thread_pthread.cpp
rename to src/thread/thread_pthread.cpp
index 9edfd4e142..483b71c0f3 100644
--- a/src/thread_pthread.cpp
+++ b/src/thread/thread_pthread.cpp
@@ -9,7 +9,7 @@
/** @file thread_pthread.cpp POSIX pthread implementation of Threads. */
-#include "stdafx.h"
+#include "../stdafx.h"
#include "thread.h"
#include
diff --git a/src/thread_win32.cpp b/src/thread/thread_win32.cpp
similarity index 97%
rename from src/thread_win32.cpp
rename to src/thread/thread_win32.cpp
index 8b1d11544b..e752de1aef 100644
--- a/src/thread_win32.cpp
+++ b/src/thread/thread_win32.cpp
@@ -9,10 +9,10 @@
/** @file thread_win32.cpp Win32 thread implementation of Threads. */
-#include "stdafx.h"
+#include "../stdafx.h"
#include "thread.h"
-#include "debug.h"
-#include "core/alloc_func.hpp"
+#include "../debug.h"
+#include "../core/alloc_func.hpp"
#include
#include
#include