summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorGravatar bunnei2018-12-07 18:15:30 -0500
committerGravatar GitHub2018-12-07 18:15:30 -0500
commitf85134021f77e573c1a5f5602940e414a9ab45de (patch)
tree4c2f3d4c0872646bc74d9280bdbea0d737cda463 /src/core/loader/loader.h
parentMerge pull request #1868 from lioncash/config (diff)
parentyuzu/game_list_worker: Don't retrieve the file type twice in AddFstEntriesToG... (diff)
downloadyuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar.gz
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.tar.xz
yuzu-f85134021f77e573c1a5f5602940e414a9ab45de.zip
Merge pull request #1873 from lioncash/const
loaders: Make GetFileType() a const qualified member function
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r--src/core/loader/loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 7686634bf..5390ab9ee 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -131,7 +131,7 @@ public:
131 * Returns the type of this file 131 * Returns the type of this file
132 * @return FileType corresponding to the loaded file 132 * @return FileType corresponding to the loaded file
133 */ 133 */
134 virtual FileType GetFileType() = 0; 134 virtual FileType GetFileType() const = 0;
135 135
136 /** 136 /**
137 * Load the application and return the created Process instance 137 * Load the application and return the created Process instance