diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-08 03:00:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-08 03:00:38 -0400 |
commit | 6a5d0328097a75e002606a209bdf2dbd495d33bb (patch) | |
tree | 0029b2985630a94765718218036eb8114da1c0c3 /src/core/hle/romfs.h | |
parent | 4941e3d41219d4df4ca52c9256da67f6b08b6490 (diff) | |
parent | cd1a96f3895acf7a1cdc68761029be802bb8defd (diff) |
Merge pull request #965 from lioncash/unused-files
hle: Remove unused romfs.cpp/.h
Diffstat (limited to 'src/core/hle/romfs.h')
-rw-r--r-- | src/core/hle/romfs.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/core/hle/romfs.h b/src/core/hle/romfs.h deleted file mode 100644 index ee9f29760..000000000 --- a/src/core/hle/romfs.h +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2017 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#pragma once - -#include <string> -#include <vector> -#include "common/common_types.h" - -namespace RomFS { - -/** - * Gets the pointer to a file in a RomFS image. - * @param romfs The pointer to the RomFS image - * @param path A vector containing the directory names and file name of the path to the file - * @return the pointer to the file - * @todo reimplement this with a full RomFS manager - */ -const u8* GetFilePointer(const u8* romfs, const std::vector<std::u16string>& path); - -} // namespace RomFS |