mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-25 19:55:50 +00:00
blundered the build
This commit is contained in:
parent
5cd5172968
commit
afd49eb275
3 changed files with 0 additions and 26 deletions
|
@ -1732,8 +1732,6 @@ bool CEXISlippi::shouldAdvanceOnlineFrame(s32 frame)
|
|||
deviation = frameWindowMultiplier * -maxSlowDownAmount;
|
||||
}
|
||||
|
||||
auto dynamicEmulationSpeed = 1.0f + deviation;
|
||||
|
||||
// If we are behind (negative offset) we want to go above 100% run speed, so we need to subtract
|
||||
// the deviation value
|
||||
auto dynamicEmulationSpeed = 1.0f - deviation;
|
||||
|
|
|
@ -239,29 +239,6 @@ void GeneralPane::LoadConfig()
|
|||
m_combobox_fallback_region->setCurrentIndex(FALLBACK_REGION_NTSCJ_INDEX);
|
||||
}
|
||||
|
||||
static QString UpdateTrackFromIndex(int index)
|
||||
{
|
||||
QString value;
|
||||
|
||||
switch (index)
|
||||
{
|
||||
case AUTO_UPDATE_DISABLE_INDEX:
|
||||
value = QString::fromStdString(AUTO_UPDATE_DISABLE_STRING);
|
||||
break;
|
||||
case AUTO_UPDATE_STABLE_INDEX:
|
||||
value = QString::fromStdString(AUTO_UPDATE_STABLE_STRING);
|
||||
break;
|
||||
case AUTO_UPDATE_BETA_INDEX:
|
||||
value = QString::fromStdString(AUTO_UPDATE_BETA_STRING);
|
||||
break;
|
||||
case AUTO_UPDATE_DEV_INDEX:
|
||||
value = QString::fromStdString(AUTO_UPDATE_DEV_STRING);
|
||||
break;
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
static DiscIO::Region UpdateFallbackRegionFromIndex(int index)
|
||||
{
|
||||
DiscIO::Region value = DiscIO::Region::Unknown;
|
||||
|
|
|
@ -29,7 +29,6 @@ private:
|
|||
void CreateLayout();
|
||||
void ConnectLayout();
|
||||
void CreateBasic();
|
||||
void CreateAutoUpdate();
|
||||
void CreateFallbackRegion();
|
||||
|
||||
void LoadConfig();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue