2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

core: Mark GetInstance() as deprecated

This way it's obvious that this function shouldn't be used in any future
code.
This commit is contained in:
Lioncash 2020-09-25 19:15:21 -04:00
parent 3e4a0a13cb
commit 5c4e237902

View file

@ -120,7 +120,7 @@ public:
* Gets the instance of the System singleton class. * Gets the instance of the System singleton class.
* @returns Reference to the instance of the System singleton class. * @returns Reference to the instance of the System singleton class.
*/ */
static System& GetInstance() { [[deprecated("Use of the global system instance is deprecated")]] static System& GetInstance() {
return s_instance; return s_instance;
} }