# HG changeset patch # User Gabriel Jacobo # Date 1403272865 10800 # Node ID f7ba2119fd91d572af295749a8ed438402784832 # Parent 0d691f3734ac1acf73824638e24fc0b000c45fcc Ooops, code that resists erasure, I've seen that in a movie. diff -r 0d691f3734ac -r f7ba2119fd91 src/filesystem/nacl/SDL_sysfilesystem.c --- a/src/filesystem/nacl/SDL_sysfilesystem.c Fri Jun 20 10:59:51 2014 -0300 +++ b/src/filesystem/nacl/SDL_sysfilesystem.c Fri Jun 20 11:01:05 2014 -0300 @@ -24,24 +24,6 @@ #ifdef SDL_FILESYSTEM_NACL -/* SDL_RWops on NACL are implemented using nacl_io, and require mount points - * to be established before actual file operations are performed - * - * Ref: https://developers.google.com/native-client/dev/devguide/coding/nacl_io - */ - -int -SDL_NaClMount(const char* source, const char* target, const char* filesystemtype, - unsigned long mountflags, const void *data) { - return mount(source, target, filesystemtype, mountflags, data); -} - -int -SDL_NaClUmount(const char *target) { - return umount(target); -} - - char * SDL_GetBasePath(void) {