aboutsummaryrefslogtreecommitdiff
path: root/backends/fs
diff options
context:
space:
mode:
authorEugene Sandulenko2005-03-09 22:21:57 +0000
committerEugene Sandulenko2005-03-09 22:21:57 +0000
commitb72df416a64642d180e9b746484ce292d845fae4 (patch)
tree9ab72c4549153aaa0737894ad3b842615f694a15 /backends/fs
parentd414c784682f8d470a24817dfa1db3d65366fba9 (diff)
downloadscummvm-rg350-b72df416a64642d180e9b746484ce292d845fae4.tar.gz
scummvm-rg350-b72df416a64642d180e9b746484ce292d845fae4.tar.bz2
scummvm-rg350-b72df416a64642d180e9b746484ce292d845fae4.zip
WIP of GP32 port. Now it is more correct port and compiles with current
CVS. Though it has some issues unresolved, one of them is that it crashes right after splash screen without showing anything. Work in progress :) svn-id: r17054
Diffstat (limited to 'backends/fs')
-rw-r--r--backends/fs/posix/posix-fs.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp
index 8673ea28d0..eb72389d26 100644
--- a/backends/fs/posix/posix-fs.cpp
+++ b/backends/fs/posix/posix-fs.cpp
@@ -18,7 +18,7 @@
* $Header$
*/
-#if defined(UNIX) || defined(__DC__) || defined (__GP32__) //ph0x
+#if defined(UNIX) || defined(__DC__)
#include "stdafx.h"
@@ -35,12 +35,6 @@
#include <stdio.h>
#include <unistd.h>
-#ifdef __GP32__ //ph0x FIXME: implement and move to portdefs.h
-#define opendir(x) (0)
-#define readdir(x) (0)
-#define closedir(x) (0)
-#endif
-
/*
* Implementation of the ScummVM file system API based on POSIX.
*/