mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Core: Add config setting for base GCI folder path.
This commit is contained in:
@ -42,6 +42,8 @@ private:
|
||||
|
||||
void BrowseMemcard(ExpansionInterface::Slot slot);
|
||||
bool SetMemcard(ExpansionInterface::Slot slot, const QString& filename);
|
||||
void BrowseGCIFolder(ExpansionInterface::Slot slot);
|
||||
bool SetGCIFolder(ExpansionInterface::Slot slot, const QString& path);
|
||||
void BrowseAGPRom(ExpansionInterface::Slot slot);
|
||||
void SetAGPRom(ExpansionInterface::Slot slot, const QString& filename);
|
||||
void BrowseGBABios();
|
||||
@ -63,6 +65,10 @@ private:
|
||||
Common::EnumMap<QLabel*, ExpansionInterface::MAX_MEMCARD_SLOT> m_agp_path_labels;
|
||||
Common::EnumMap<QLineEdit*, ExpansionInterface::MAX_MEMCARD_SLOT> m_agp_paths;
|
||||
|
||||
Common::EnumMap<QHBoxLayout*, ExpansionInterface::MAX_MEMCARD_SLOT> m_gci_path_layouts;
|
||||
Common::EnumMap<QLabel*, ExpansionInterface::MAX_MEMCARD_SLOT> m_gci_path_labels;
|
||||
Common::EnumMap<QLineEdit*, ExpansionInterface::MAX_MEMCARD_SLOT> m_gci_paths;
|
||||
|
||||
QCheckBox* m_gba_threads;
|
||||
QCheckBox* m_gba_save_rom_path;
|
||||
QPushButton* m_gba_browse_bios;
|
||||
|
Reference in New Issue
Block a user