aboutsummaryrefslogtreecommitdiff
path: root/maemo
diff options
context:
space:
mode:
authornotaz2012-11-05 00:28:57 +0200
committernotaz2012-11-05 03:12:25 +0200
commitcc56203b76e1fcef2c7e55b460daf07e654a1547 (patch)
tree676013793bf5d42bdc6ef629385b07620e907bef /maemo
parent0e2e3f498456d1175916ecd69d0a9e80e701e760 (diff)
downloadpcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.gz
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.bz2
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.zip
switch over to libpicofe
- libretro should not be affected by this, all others need to do 'git submodule init && git submodule update' from now on. - pandora should get gamma control support
Diffstat (limited to 'maemo')
-rw-r--r--maemo/hildon.c4
-rw-r--r--maemo/main.c8
2 files changed, 9 insertions, 3 deletions
diff --git a/maemo/hildon.c b/maemo/hildon.c
index 4458aa7..43e3e15 100644
--- a/maemo/hildon.c
+++ b/maemo/hildon.c
@@ -4,12 +4,12 @@
#include <stdint.h>
#include <unistd.h>
#include <hildon/hildon.h>
-#include "plugin_lib.h"
+#include "plugin_lib.h"
#include "main.h"
#include "plat.h"
#include "../libpcsxcore/psemu_plugin_defs.h"
-#include "common/readpng.h"
+#include "libpicofe/readpng.h"
#include "maemo_common.h"
#define X_RES 800
diff --git a/maemo/main.c b/maemo/main.c
index 2da693d..4ffd1ab 100644
--- a/maemo/main.c
+++ b/maemo/main.c
@@ -21,6 +21,9 @@
int g_opts = OPT_SHOWFPS;
int g_maemo_opts;
+int g_scaler, soft_filter;
+int g_menuscreen_w, g_menuscreen_h;
+
char file_name[MAXPATHLEN];
enum sched_action emu_action;
@@ -53,7 +56,10 @@ int main(int argc, char **argv)
strcpy(Config.PluginsDir, "/opt/maemo/usr/games/plugins");
snprintf(Config.PatchesDir, sizeof(Config.PatchesDir), "/opt/maemo/usr/games" PATCHES_DIR);
Config.PsxAuto = 1;
-
+
+ g_menuscreen_w = 800;
+ g_menuscreen_h = 480;
+
pl_init();
emu_core_init();