aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ps2
diff options
context:
space:
mode:
authorTony Puccinelli2010-08-07 00:40:15 +0000
committerTony Puccinelli2010-08-07 00:40:15 +0000
commit6982aed8a43be6a33802be95c9fde557885b7a5b (patch)
tree5fe7161875e2e7ff6658c6179f9f9c03ef8adf90 /backends/platform/ps2
parent646587f79a4249e25e47af74d36c72602f00dd0f (diff)
downloadscummvm-rg350-6982aed8a43be6a33802be95c9fde557885b7a5b.tar.gz
scummvm-rg350-6982aed8a43be6a33802be95c9fde557885b7a5b.tar.bz2
scummvm-rg350-6982aed8a43be6a33802be95c9fde557885b7a5b.zip
made MIPSDLObject and PS2 plugin provider that uses it
svn-id: r51818
Diffstat (limited to 'backends/platform/ps2')
-rw-r--r--backends/platform/ps2/Makefile.ps24
-rw-r--r--backends/platform/ps2/systemps2.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/backends/platform/ps2/Makefile.ps2 b/backends/platform/ps2/Makefile.ps2
index e5617f40bd..8c59ee8c17 100644
--- a/backends/platform/ps2/Makefile.ps2
+++ b/backends/platform/ps2/Makefile.ps2
@@ -77,7 +77,7 @@ DEPDIR = .deps
TARGET = elf/scummvm.elf
-DEFINES += -DUSE_VORBIS -DUSE_TREMOR -DUSE_MAD -DUSE_ZLIB -DFORCE_RTL -DDISABLE_SAVEGAME_SORTING -D_EE -D__PLAYSTATION2__ -DELF_LOADER_TARGET -G2 -O2 -Wall -Wno-multichar -fno-rtti -fno-exceptions -DNO_ADAPTOR -DNEW_PLUGIN_DESIGN_FIRST_REFINEMENT
+DEFINES += -DUSE_VORBIS -DUSE_TREMOR -DUSE_MAD -DUSE_ZLIB -DFORCE_RTL -DDISABLE_SAVEGAME_SORTING -D_EE -D__PLAYSTATION2__ -DELF_LOADER_TARGET -G2 -O2 -Wall -Wno-multichar -fno-rtti -fno-exceptions -DNO_ADAPTOR#-DNEW_PLUGIN_DESIGN_FIRST_REFINEMENT
INCLUDES = $(addprefix -I$(PS2_EXTRA),$(PS2_EXTRA_INCS))
INCLUDES += -I $(PS2SDK)/ee/include -I $(PS2SDK)/common/include -I ./common -I . -I $(srcdir) -I $(srcdir)/engines
@@ -112,7 +112,7 @@ OBJS := $(srcdir)/backends/platform/ps2/DmaPipe.o \
$(srcdir)/backends/platform/ps2/ps2mutex.o \
$(srcdir)/backends/platform/ps2/ps2time.o \
$(srcdir)/backends/plugins/elf-loader.o \
- $(srcdir)/backends/plugins/mips-relocs.o \
+ $(srcdir)/backends/plugins/mips-loader.o \
$(srcdir)/backends/plugins/shorts-segment-manager.o \
$(srcdir)/backends/platform/ps2/ps2debug.o
diff --git a/backends/platform/ps2/systemps2.cpp b/backends/platform/ps2/systemps2.cpp
index bd8179976b..357404c5c4 100644
--- a/backends/platform/ps2/systemps2.cpp
+++ b/backends/platform/ps2/systemps2.cpp
@@ -59,7 +59,7 @@
#include "backends/platform/ps2/ps2debug.h"
#include "backends/fs/ps2/ps2-fs-factory.h"
-#include "backends/plugins/elf-provider.h"
+#include "backends/plugins/ps2/ps2-provider.h"
#include "backends/saves/default/default-saves.h"
#include "common/config-manager.h"
@@ -132,7 +132,7 @@ extern "C" int main(int argc, char *argv[]) {
g_system = g_systemPs2 = new OSystem_PS2(argv[0]);
#ifdef DYNAMIC_MODULES
- PluginManager::instance().addPluginProvider(new ELFPluginProvider());
+ PluginManager::instance().addPluginProvider(new PS2PluginProvider());
#endif
g_systemPs2->init();