dep/fmt: Bump to v11.0.2
This commit is contained in:
@@ -19,6 +19,8 @@
|
||||
#include "common/path.h"
|
||||
#include "common/string_util.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include <QtCore/QCoreApplication>
|
||||
#include <QtCore/QFile>
|
||||
#include <QtCore/QJsonArray>
|
||||
|
||||
@@ -26,6 +26,8 @@
|
||||
#include "common/log.h"
|
||||
#include "common/string_util.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include <QtWidgets/QCheckBox>
|
||||
#include <QtWidgets/QDoubleSpinBox>
|
||||
#include <QtWidgets/QInputDialog>
|
||||
|
||||
@@ -7,6 +7,8 @@
|
||||
#include "qtutils.h"
|
||||
#include "settingwidgetbinder.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include "util/sdl_input_source.h"
|
||||
|
||||
ControllerGlobalSettingsWidget::ControllerGlobalSettingsWidget(QWidget* parent, ControllerSettingsWindow* dialog)
|
||||
@@ -148,7 +150,7 @@ ControllerLEDSettingsDialog::~ControllerLEDSettingsDialog() = default;
|
||||
|
||||
void ControllerLEDSettingsDialog::linkButton(ColorPickerButton* button, u32 player_id)
|
||||
{
|
||||
std::string key(fmt::format("Player{}LED", player_id));
|
||||
std::string key = fmt::format("Player{}LED", player_id);
|
||||
const u32 current_value =
|
||||
SDLInputSource::ParseRGBForPlayerId(m_dialog->getStringValue("SDLExtra", key.c_str(), ""), player_id);
|
||||
button->setColor(current_value);
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
|
||||
#include "common/bitutils.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include <QtCore/QTimer>
|
||||
#include <QtGui/QKeyEvent>
|
||||
#include <QtGui/QMouseEvent>
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
#include "common/small_string.h"
|
||||
#include "common/string_util.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include <QtCore/QUrl>
|
||||
#include <QtWidgets/QFileDialog>
|
||||
#include <QtWidgets/QLabel>
|
||||
|
||||
@@ -14,6 +14,8 @@
|
||||
#include "common/assert.h"
|
||||
#include "common/string_util.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include <QtCore/QFileInfo>
|
||||
#include <QtGui/QColor>
|
||||
#include <QtWidgets/QFileDialog>
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
#include "setupwizarddialog.h"
|
||||
|
||||
#include "core/achievements.h"
|
||||
#include "core/bus.h"
|
||||
#include "core/cheats.h"
|
||||
#include "core/controller.h"
|
||||
#include "core/fullscreen_ui.h"
|
||||
@@ -45,8 +46,7 @@
|
||||
|
||||
#include "scmversion/scmversion.h"
|
||||
|
||||
#include "core/bus.h"
|
||||
#include "imgui.h"
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include <QtCore/QCoreApplication>
|
||||
#include <QtCore/QDateTime>
|
||||
@@ -1495,7 +1495,7 @@ void EmuThread::startDumpingAudio()
|
||||
return;
|
||||
}
|
||||
|
||||
//System::StartDumpingAudio();
|
||||
// System::StartDumpingAudio();
|
||||
}
|
||||
|
||||
void EmuThread::stopDumpingAudio()
|
||||
@@ -1506,7 +1506,7 @@ void EmuThread::stopDumpingAudio()
|
||||
return;
|
||||
}
|
||||
|
||||
//System::StopDumpingAudio();
|
||||
// System::StopDumpingAudio();
|
||||
}
|
||||
|
||||
void EmuThread::singleStepCPU()
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
|
||||
#include "common/file_system.h"
|
||||
|
||||
#include "fmt/format.h"
|
||||
|
||||
#include <QtWidgets/QMessageBox>
|
||||
|
||||
SetupWizardDialog::SetupWizardDialog()
|
||||
|
||||
Reference in New Issue
Block a user