diff options
| author | 2020-11-18 02:09:05 -0500 | |
|---|---|---|
| committer | 2020-11-18 02:09:08 -0500 | |
| commit | aaf262bfed6eaeaf34d487059eed95e540636108 (patch) | |
| tree | e85b167d6627ce4e88b8ab4992b86c2a413e16b5 /src/core/core.h | |
| parent | core: Make use of [[nodiscard]] with the System class (diff) | |
| download | yuzu-aaf262bfed6eaeaf34d487059eed95e540636108.tar.gz yuzu-aaf262bfed6eaeaf34d487059eed95e540636108.tar.xz yuzu-aaf262bfed6eaeaf34d487059eed95e540636108.zip | |
core: Remove unused private Init function for the System class
This isn't used, so it can be removed.
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/core/core.h b/src/core/core.h index e1cc2975d..cd155625c 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -388,14 +388,6 @@ public: | |||
| 388 | private: | 388 | private: |
| 389 | System(); | 389 | System(); |
| 390 | 390 | ||
| 391 | /** | ||
| 392 | * Initialize the emulated system. | ||
| 393 | * @param emu_window Reference to the host-system window used for video output and keyboard | ||
| 394 | * input. | ||
| 395 | * @return ResultStatus code, indicating if the operation succeeded. | ||
| 396 | */ | ||
| 397 | [[nodiscard]] ResultStatus Init(Frontend::EmuWindow& emu_window); | ||
| 398 | |||
| 399 | struct Impl; | 391 | struct Impl; |
| 400 | std::unique_ptr<Impl> impl; | 392 | std::unique_ptr<Impl> impl; |
| 401 | 393 | ||