[Scummvm-git-logs] scummvm master -> d091e9e69c0ca5183d01a51508c95ef16f252985

aquadran noreply at scummvm.org
Sat Feb 12 13:56:03 UTC 2022


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d091e9e69c PS3: Enable networking also if only SDL_NET is enabled


Commit: d091e9e69c0ca5183d01a51508c95ef16f252985
    https://github.com/scummvm/scummvm/commit/d091e9e69c0ca5183d01a51508c95ef16f252985
Author: Paweł Kołodziejski (aquadran at gmail.com)
Date: 2022-02-12T14:55:56+01:00

Commit Message:
PS3: Enable networking also if only SDL_NET is enabled

Changed paths:
    backends/platform/sdl/ps3/ps3-main.cpp


diff --git a/backends/platform/sdl/ps3/ps3-main.cpp b/backends/platform/sdl/ps3/ps3-main.cpp
index 5138bd0a267..767129c8694 100644
--- a/backends/platform/sdl/ps3/ps3-main.cpp
+++ b/backends/platform/sdl/ps3/ps3-main.cpp
@@ -34,7 +34,7 @@ SYS_PROCESS_PARAM(1000, 0x40000)
 
 int main(int argc, char *argv[]) {
 
-#ifdef USE_LIBCURL
+#if defined(USE_LIBCURL) || defined(USE_SDL_NET)
 	netInitialize();
 #endif
 
@@ -55,7 +55,7 @@ int main(int argc, char *argv[]) {
 	// Free OSystem
 	g_system->destroy();
 
-#ifdef USE_LIBCURL
+#if defined(USE_LIBCURL) || defined(USE_SDL_NET)
 	netDeinitialize();
 #endif
 




More information about the Scummvm-git-logs mailing list