mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 13:27:45 -07:00
Compare commits
4 Commits
a26b397214
...
4506c8b4f5
Author | SHA1 | Date | |
---|---|---|---|
|
4506c8b4f5 | ||
|
80ea68b13c | ||
|
fbce737415 | ||
|
1888770256 |
@ -98,6 +98,10 @@ void ProcessorInterfaceManager::RegisterMMIO(MMIO::Mapping* mmio, u32 base)
|
||||
{
|
||||
system.GetGPFifo().ResetGatherPipe();
|
||||
|
||||
// Assume that all bytes that made it into the GPU fifo did in fact execute
|
||||
// before this MMIO write takes effect.
|
||||
system.GetFifo().SyncGPUForRegisterAccess();
|
||||
|
||||
// Call Fifo::ResetVideoBuffer() from the video thread. Since that function
|
||||
// resets various pointers used by the video thread, we can't call it directly
|
||||
// from the CPU thread, so queue a task to do it instead. In single-core mode,
|
||||
|
@ -59,6 +59,22 @@
|
||||
#include "InputCommon/ControllerInterface/CoreDevice.h"
|
||||
#include "InputCommon/InputConfig.h"
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
QString GetUserFriendlyDeviceName(const std::string& str)
|
||||
{
|
||||
ciface::Core::DeviceQualifier qualifier;
|
||||
qualifier.FromString(str);
|
||||
|
||||
return QStringLiteral("%1 (%2) %3")
|
||||
.arg(QString::fromStdString(qualifier.name))
|
||||
.arg(qualifier.cid + 1)
|
||||
.arg(QString::fromStdString(qualifier.source));
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
MappingWindow::MappingWindow(QWidget* parent, Type type, int port_num)
|
||||
: QDialog(parent), m_port(port_num)
|
||||
{
|
||||
@ -363,8 +379,9 @@ void MappingWindow::OnGlobalDevicesChanged()
|
||||
|
||||
for (const auto& name : g_controller_interface.GetAllDeviceStrings())
|
||||
{
|
||||
const auto display_name = GetUserFriendlyDeviceName(name);
|
||||
const auto qname = QString::fromStdString(name);
|
||||
m_devices_combo->addItem(qname, qname);
|
||||
m_devices_combo->addItem(display_name, qname);
|
||||
}
|
||||
|
||||
const auto default_device = m_controller->GetDefaultDevice().ToString();
|
||||
@ -372,7 +389,7 @@ void MappingWindow::OnGlobalDevicesChanged()
|
||||
if (!default_device.empty())
|
||||
{
|
||||
const auto default_device_index =
|
||||
m_devices_combo->findText(QString::fromStdString(default_device));
|
||||
m_devices_combo->findData(QString::fromStdString(default_device));
|
||||
|
||||
if (default_device_index != -1)
|
||||
{
|
||||
@ -382,9 +399,10 @@ void MappingWindow::OnGlobalDevicesChanged()
|
||||
{
|
||||
// Selected device is not currently attached.
|
||||
m_devices_combo->insertSeparator(m_devices_combo->count());
|
||||
const auto display_name = GetUserFriendlyDeviceName(default_device);
|
||||
const auto qname = QString::fromStdString(default_device);
|
||||
m_devices_combo->addItem(QLatin1Char{'['} + tr("disconnected") + QStringLiteral("] ") + qname,
|
||||
qname);
|
||||
m_devices_combo->addItem(
|
||||
QLatin1Char{'['} + tr("disconnected") + QStringLiteral("] ") + display_name, qname);
|
||||
m_devices_combo->setCurrentIndex(m_devices_combo->count() - 1);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user