mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
Provide dummy remove() function for DC...
svn-id: r29152
This commit is contained in:
parent
8ced5d58df
commit
151e0cfa05
@ -132,6 +132,11 @@
|
||||
#define clearerr(handle) symbian_clearerr(handle)
|
||||
#endif
|
||||
|
||||
#ifdef __DC__
|
||||
/* Can't remove files from CD-ROM... */
|
||||
#define remove(name) ((errno = EROFS), -1)
|
||||
#endif
|
||||
|
||||
namespace Common {
|
||||
|
||||
typedef HashMap<String, int, CaseSensitiveString_Hash, CaseSensitiveString_EqualTo> StringIntMap;
|
||||
|
Loading…
x
Reference in New Issue
Block a user