ALL: synced with ScummVM commit 09bf38c120

This commit is contained in:
Pawel Kolodziejski 2020-05-09 20:05:54 +02:00
parent b5d73d4c22
commit b586571900
414 changed files with 111155 additions and 38279 deletions

View file

@ -20,14 +20,21 @@
*
*/
#define FORBIDDEN_SYMBOL_ALLOW_ALL
#include "common/scummsys.h"
#include "backends/platform/sdl/ps3/ps3.h"
#include "backends/plugins/sdl/sdl-provider.h"
#include "base/main.h"
#include <net/net.h>
int main(int argc, char *argv[]) {
#ifdef USE_LIBCURL
netInitialize();
#endif
// Create our OSystem instance
g_system = new OSystem_PS3();
assert(g_system);
@ -45,5 +52,9 @@ int main(int argc, char *argv[]) {
// Free OSystem
g_system->destroy();
#ifdef USE_LIBCURL
netDeinitialize();
#endif
return res;
}