diff options
| author | 2018-12-07 18:15:30 -0500 | |
|---|---|---|
| committer | 2018-12-07 18:15:30 -0500 | |
| commit | f85134021f77e573c1a5f5602940e414a9ab45de (patch) | |
| tree | 4c2f3d4c0872646bc74d9280bdbea0d737cda463 /src/core/loader/loader.h | |
| parent | Merge pull request #1868 from lioncash/config (diff) | |
| parent | yuzu/game_list_worker: Don't retrieve the file type twice in AddFstEntriesToG... (diff) | |
| download | yuzu-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.h | 2 |
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 |