mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
334e33d4fa
This fixes a crash when trying to open the advanced input config dialog on the wiimote extensions. The device_cbox wasn't initialised and it should have been with the wiimote one.
17 lines
440 B
C++
17 lines
440 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 wxComboBox;
|
|
|
|
class TurntableInputConfigDialog final : public InputConfigDialog
|
|
{
|
|
public:
|
|
TurntableInputConfigDialog(wxWindow* parent, InputConfig& config, const wxString& name,
|
|
wxComboBox* device_cbox_parent, int port_num = 0);
|
|
};
|