From 48aef610275817e6c6c93addd6a246c46a648de1 Mon Sep 17 00:00:00 2001 From: Gauvain 'GovanifY' Roussel-Tarbouriech Date: Wed, 12 May 2021 23:16:36 +0200 Subject: [PATCH] gui: fix assert with default case unreachable by removing plugin remnant --- pcsx2/PathDefs.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pcsx2/PathDefs.h b/pcsx2/PathDefs.h index 198579a15c..c4265ea2dd 100644 --- a/pcsx2/PathDefs.h +++ b/pcsx2/PathDefs.h @@ -19,12 +19,11 @@ enum FoldersEnum_t { - // FIXME : Plugins and Settings folders are no longer part of the user-local + // FIXME : Settings folder is no longer part of the user-local // ini storage. They have been moved to an app-local ini storage class (which is currently // handled lazily via global variables) - FolderId_Plugins = 0, - FolderId_Settings, - + FolderId_Settings = 0, + FolderId_Bios, FolderId_Snapshots, FolderId_Savestates,