mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
NetPlay: GBA Support
This commit is contained in:
@ -7,6 +7,7 @@
|
||||
|
||||
#include "Core/NetPlayProto.h"
|
||||
|
||||
class QCheckBox;
|
||||
class QGridLayout;
|
||||
class QComboBox;
|
||||
class QDialogButtonBox;
|
||||
@ -25,6 +26,7 @@ public:
|
||||
int exec() override;
|
||||
|
||||
NetPlay::PadMappingArray GetGCPadArray();
|
||||
NetPlay::GBAConfigArray GetGBAArray();
|
||||
NetPlay::PadMappingArray GetWiimoteArray();
|
||||
|
||||
private:
|
||||
@ -34,10 +36,12 @@ private:
|
||||
void OnMappingChanged();
|
||||
|
||||
NetPlay::PadMappingArray m_pad_mapping;
|
||||
NetPlay::GBAConfigArray m_gba_config;
|
||||
NetPlay::PadMappingArray m_wii_mapping;
|
||||
|
||||
QGridLayout* m_main_layout;
|
||||
std::array<QComboBox*, 4> m_gc_boxes;
|
||||
std::array<QCheckBox*, 4> m_gba_boxes;
|
||||
std::array<QComboBox*, 4> m_wii_boxes;
|
||||
std::vector<const NetPlay::Player*> m_players;
|
||||
QDialogButtonBox* m_button_box;
|
||||
|
Reference in New Issue
Block a user