Skip to content

Commit f408b3e

Browse files
authored
Merge pull request #1133 from openmultiplayer/amir/fixes
Some fixes and changes
2 parents 767dccb + 0b790f0 commit f408b3e

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ set(BUILD_UNICODE_COMPONENT FALSE CACHE BOOL "Whether to build the Unicode compo
134134
set(BUILD_LEGACY_COMPONENTS TRUE CACHE BOOL "Whether to build the legacy components")
135135
set(BUILD_TEST_COMPONENTS FALSE CACHE BOOL "Whether to build the test component")
136136
set(BUILD_SQLITE_COMPONENT TRUE CACHE BOOL "Whether to build the SQLite component")
137-
set(BUILD_FIXES_COMPONENT TRUE CACHE BOOL "Whether to build the Fixes component")
137+
set(BUILD_FIXES_COMPONENT FALSE CACHE BOOL "Whether to build the Fixes component")
138138

139139
if (UNIX)
140140
set(BUILD_ABI_CHECK_TOOL TRUE CACHE BOOL "Whether to build the abi-check tool")

Server/Components/CAPI/main.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ class CAPIComponent final : public IComponent
6969
COMPONENT_UNLOADED(mgr->textlabels)
7070
COMPONENT_UNLOADED(mgr->vehicles)
7171
COMPONENT_UNLOADED(mgr->models)
72+
COMPONENT_UNLOADED(mgr->npcs)
7273
}
7374

7475
void free() override

Server/Components/Console/console_impl.hpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,10 +214,7 @@ class ConsoleComponent final : public IConsoleComponent, public CoreEventHandler
214214
threadData = new ThreadProcData { true, this };
215215
cinThread = std::thread(ThreadProc, threadData);
216216
nativeThreadHandle = cinThread.native_handle();
217-
218-
#ifndef WIN32
219217
cinThread.detach();
220-
#endif
221218
}
222219

223220
void onReady() override

0 commit comments

Comments
 (0)