summaryrefslogtreecommitdiff
path: root/src/net/download.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/download.cpp')
-rw-r--r--src/net/download.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/net/download.cpp b/src/net/download.cpp
index 1d49caea2..4d03ea783 100644
--- a/src/net/download.cpp
+++ b/src/net/download.cpp
@@ -26,6 +26,8 @@
#include "logger.h"
#include "main.h"
+#include "utils/sdlhelper.h"
+
#include <curl/curl.h>
#include <SDL.h>
@@ -169,12 +171,7 @@ bool Download::start()
{
logger->log("Starting download: %s", mUrl.c_str());
-#ifdef USE_SDL2
- mThread = SDL_CreateThread(downloadThread, "download", this);
-#else
- mThread = SDL_CreateThread(downloadThread, this);
-#endif
-
+ mThread = SDL::createThread(downloadThread, "download", this);
if (!mThread)
{
logger->log1(DOWNLOAD_ERROR_MESSAGE_THREAD);