summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorworktycho <work.tycho@gmail.com>2015-05-15 15:54:48 +0200
committertycho <work.tycho@gmail.com>2015-05-16 11:47:04 +0200
commit0da8c7392e753b89b20dc0678e78ab3060e535ed (patch)
treec2191c030f44c4a9f83df2e7c79fb81215221539
parentMove make_unique into a namespace to avoid ADL issues (diff)
downloadcuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar
cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.gz
cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.bz2
cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.lz
cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.xz
cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.tar.zst
cuberite-0da8c7392e753b89b20dc0678e78ab3060e535ed.zip
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 9f57ad6bd..a0f51105a 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -258,7 +258,7 @@ DWORD WINAPI serviceWorkerThread(LPVOID lpParam)
UNREFERENCED_PARAMETER(lpParam);
// Do the normal startup
- universalMain();
+ universalMain(cpp14::make_unique<cMemorySettingsRepository>());
return ERROR_SUCCESS;
}