diff options
author | David-John Willis | 2011-05-26 14:33:34 +0100 |
---|---|---|
committer | David-John Willis | 2011-06-11 17:08:54 +0100 |
commit | 1c1786b16f34e4e998a5e1677427bdc75d318a93 (patch) | |
tree | fb405684fd6f5762738e3d43fa6a78376ff529db | |
parent | 4fcd65d885f14b88d3ef3cbdf1bbedd5884c72a7 (diff) | |
download | scummvm-rg350-1c1786b16f34e4e998a5e1677427bdc75d318a93.tar.gz scummvm-rg350-1c1786b16f34e4e998a5e1677427bdc75d318a93.tar.bz2 scummvm-rg350-1c1786b16f34e4e998a5e1677427bdc75d318a93.zip |
OPENPANDORA: Use the SDL plugin provider not the main POSIX one.
-rw-r--r-- | backends/platform/openpandora/op-main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/openpandora/op-main.cpp b/backends/platform/openpandora/op-main.cpp index ae9d288e26..bb359e7204 100644 --- a/backends/platform/openpandora/op-main.cpp +++ b/backends/platform/openpandora/op-main.cpp @@ -21,7 +21,7 @@ */ #include "backends/platform/openpandora/op-sdl.h" -#include "backends/plugins/posix/posix-provider.h" +#include "backends/plugins/sdl/sdl-provider.h" #include "base/main.h" #if defined(OPENPANDORA) @@ -36,7 +36,7 @@ int main(int argc, char *argv[]) { ((OSystem_OP *)g_system)->init(); #ifdef DYNAMIC_MODULES - PluginManager::instance().addPluginProvider(new POSIXPluginProvider()); + PluginManager::instance().addPluginProvider(new SDLPluginProvider()); #endif // Invoke the actual ScummVM main entry point: |