mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
9ff95c58fa
This is more logical as the mic is plugged into an EXI slot so it should be configured via the GameCube config dialog. This also allows to pass the right port number for the new dialog.
15 lines
374 B
C++
15 lines
374 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "DolphinWX/Input/InputConfigDiag.h"
|
|
|
|
class MicButtonConfigDialog final : public InputConfigDialog
|
|
{
|
|
public:
|
|
MicButtonConfigDialog(wxWindow* parent, InputConfig& config, const wxString& name,
|
|
int port_num = 0);
|
|
};
|