aboutsummaryrefslogtreecommitdiff
path: root/backends/dc
diff options
context:
space:
mode:
authorMarcus Comstedt2003-11-03 22:20:51 +0000
committerMarcus Comstedt2003-11-03 22:20:51 +0000
commite55370e08db26a871d47405208e8f8e5852afcbc (patch)
treefd4cc2c3fa55484b8c2b1ecf204075eddcc5d1fc /backends/dc
parentd85757987e893f53a34e08e6ef912dc86ffe619f (diff)
downloadscummvm-rg350-e55370e08db26a871d47405208e8f8e5852afcbc.tar.gz
scummvm-rg350-e55370e08db26a871d47405208e8f8e5852afcbc.tar.bz2
scummvm-rg350-e55370e08db26a871d47405208e8f8e5852afcbc.zip
Use posix-fs on Dreamcast.
svn-id: r11112
Diffstat (limited to 'backends/dc')
-rw-r--r--backends/dc/Makefile2
-rw-r--r--backends/dc/dc-fs.cpp27
2 files changed, 1 insertions, 28 deletions
diff --git a/backends/dc/Makefile b/backends/dc/Makefile
index 0e39ae51a8..a547f20490 100644
--- a/backends/dc/Makefile
+++ b/backends/dc/Makefile
@@ -21,7 +21,7 @@ AR = sh-elf-ar cru
RANLIB = sh-elf-ranlib
OBJS := dcmain.o time.o display.o audio.o input.o selector.o icon.o \
- label.o vmsave.o dc-fs.o
+ label.o vmsave.o backends/fs/posix/posix-fs.o
include ../../Makefile.common
diff --git a/backends/dc/dc-fs.cpp b/backends/dc/dc-fs.cpp
deleted file mode 100644
index f86ffb0522..0000000000
--- a/backends/dc/dc-fs.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-/* ScummVM - Scumm Interpreter
- * Copyright (C) 2002 The ScummVM project
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- * $Header$
- */
-
-#include <common/stdafx.h>
-#include <backends/fs/fs.h>
-#include "base/engine.h"
-
-FilesystemNode *FilesystemNode::getRoot() {
- error ("No filesystem implemented for DC!");
-}