aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorJoost Peters2009-09-27 20:46:38 +0000
committerJoost Peters2009-09-27 20:46:38 +0000
commit0a36b67a1f12490f84c1a6c1f03aa09f2e598c1f (patch)
tree6739c22eef7ee1edea2e66729abb95917b9123d5 /backends
parent460d7b269bdd22cd4c9df941ab3e2d5bb640297a (diff)
downloadscummvm-rg350-0a36b67a1f12490f84c1a6c1f03aa09f2e598c1f.tar.gz
scummvm-rg350-0a36b67a1f12490f84c1a6c1f03aa09f2e598c1f.tar.bz2
scummvm-rg350-0a36b67a1f12490f84c1a6c1f03aa09f2e598c1f.zip
reduce display list size - we only use a fraction of it.
svn-id: r44418
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/psp/osys_psp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/psp/osys_psp.cpp b/backends/platform/psp/osys_psp.cpp
index 79804b3e18..16f35f971f 100644
--- a/backends/platform/psp/osys_psp.cpp
+++ b/backends/platform/psp/osys_psp.cpp
@@ -56,7 +56,7 @@
#define MAX_FPS 30
-unsigned int __attribute__((aligned(16))) displayList[262144];
+unsigned int __attribute__((aligned(16))) displayList[2048];
unsigned short __attribute__((aligned(16))) clut256[256];
unsigned short __attribute__((aligned(16))) mouseClut[256];
unsigned short __attribute__((aligned(16))) cursorPalette[256];