diff options
| author | Subv <subv2112@gmail.com> | 2015-01-01 12:39:27 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2015-01-02 21:13:54 -0500 |
| commit | aade417b143a756da10b69747793c707ef8316fd (patch) | |
| tree | d5fd49926dbfb4e7c289a8fa060df9c1e4401fde /src/core/file_sys/directory_romfs.cpp | |
| parent | 13efbdc2014177b84cae82e522b191e2f2f022df (diff) | |
Archives: Reduced duplicate code in RomFS and SaveCheck.
Fixed a few warnings and cleaned up the code
Diffstat (limited to 'src/core/file_sys/directory_romfs.cpp')
| -rw-r--r-- | src/core/file_sys/directory_romfs.cpp | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/core/file_sys/directory_romfs.cpp b/src/core/file_sys/directory_romfs.cpp deleted file mode 100644 index e130aca17..000000000 --- a/src/core/file_sys/directory_romfs.cpp +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright 2014 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include "common/common_types.h" - -#include "core/file_sys/directory_romfs.h" - -//////////////////////////////////////////////////////////////////////////////////////////////////// -// FileSys namespace - -namespace FileSys { - -Directory_RomFS::Directory_RomFS() { -} - -Directory_RomFS::~Directory_RomFS() { -} - -bool Directory_RomFS::Open() { - return false; -} - -u32 Directory_RomFS::Read(const u32 count, Entry* entries) { - return 0; -} - -bool Directory_RomFS::Close() const { - return false; -} - -} // namespace FileSys |
