summaryrefslogtreecommitdiff
path: root/src/core/hle/romfs.h
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-07 13:13:58 -0400
committerGravatar Lioncash2018-08-07 19:34:12 -0400
commitcd1a96f3895acf7a1cdc68761029be802bb8defd (patch)
tree93e6bb4fd69c1ab9fed67bda7caf32c961cd1a45 /src/core/hle/romfs.h
parentMerge pull request #971 from DarkLordZach/mbedtls-2.12.0 (diff)
downloadyuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar.gz
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.tar.xz
yuzu-cd1a96f3895acf7a1cdc68761029be802bb8defd.zip
hle: Remove unused romfs.cpp/.h
These files are no longer used, so we can get rid of them.
Diffstat (limited to 'src/core/hle/romfs.h')
-rw-r--r--src/core/hle/romfs.h22
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 @@
1// Copyright 2017 Citra Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#pragma once
6
7#include <string>
8#include <vector>
9#include "common/common_types.h"
10
11namespace RomFS {
12
13/**
14 * Gets the pointer to a file in a RomFS image.
15 * @param romfs The pointer to the RomFS image
16 * @param path A vector containing the directory names and file name of the path to the file
17 * @return the pointer to the file
18 * @todo reimplement this with a full RomFS manager
19 */
20const u8* GetFilePointer(const u8* romfs, const std::vector<std::u16string>& path);
21
22} // namespace RomFS