blundered the build

This commit is contained in:
Nikhil Narayana 2022-05-30 09:32:18 -07:00
commit afd49eb275
3 changed files with 0 additions and 26 deletions

View file

@ -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;

View file

@ -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;

View file

@ -29,7 +29,6 @@ private:
void CreateLayout();
void ConnectLayout();
void CreateBasic();
void CreateAutoUpdate();
void CreateFallbackRegion();
void LoadConfig();