mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-19 06:55:45 -04:00
HostInterface: Add proper turbo speed setting
This commit is contained in:
@ -843,9 +843,6 @@ void SDLHostInterface::DrawMainMenuBar()
|
||||
void SDLHostInterface::DrawQuickSettingsMenu()
|
||||
{
|
||||
bool settings_changed = false;
|
||||
settings_changed |= ImGui::MenuItem("Enable Speed Limiter", nullptr, &m_settings_copy.speed_limiter_enabled);
|
||||
|
||||
ImGui::Separator();
|
||||
|
||||
if (ImGui::BeginMenu("CPU Execution Mode"))
|
||||
{
|
||||
@ -1288,7 +1285,6 @@ void SDLHostInterface::DrawSettingsWindow()
|
||||
ImGui::SameLine(indent);
|
||||
|
||||
settings_changed |= ImGui::SliderFloat("##speed", &m_settings_copy.emulation_speed, 0.25f, 5.0f);
|
||||
settings_changed |= ImGui::Checkbox("Enable Speed Limiter", &m_settings_copy.speed_limiter_enabled);
|
||||
settings_changed |= ImGui::Checkbox("Increase Timer Resolution", &m_settings_copy.increase_timer_resolution);
|
||||
settings_changed |= ImGui::Checkbox("Pause On Start", &m_settings_copy.start_paused);
|
||||
settings_changed |= ImGui::Checkbox("Start Fullscreen", &m_settings_copy.start_fullscreen);
|
||||
|
Reference in New Issue
Block a user