mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-28 05:06:42 +00:00
Throttler: Rename "framelimiter" to "emulation speed".
We don't throttle by frames, we throttle by coretiming speed. So looking up VI for calculating the speed was just very wrong. The new ini option is a float, 1.0f for fullspeed. In the GUI, percentual values are used.
This commit is contained in:
parent
f3098bf426
commit
3ff4ec275a
14 changed files with 86 additions and 69 deletions
|
@ -32,10 +32,10 @@ private:
|
|||
void OnIdleSkipCheckBoxChanged(wxCommandEvent&);
|
||||
void OnCheatCheckBoxChanged(wxCommandEvent&);
|
||||
void OnForceNTSCJCheckBoxChanged(wxCommandEvent&);
|
||||
void OnFrameLimitChoiceChanged(wxCommandEvent&);
|
||||
void OnThrottlerChoiceChanged(wxCommandEvent&);
|
||||
void OnCPUEngineRadioBoxChanged(wxCommandEvent&);
|
||||
|
||||
wxArrayString m_frame_limit_array_string;
|
||||
wxArrayString m_throttler_array_string;
|
||||
wxArrayString m_cpu_engine_array_string;
|
||||
|
||||
wxCheckBox* m_dual_core_checkbox;
|
||||
|
@ -43,7 +43,7 @@ private:
|
|||
wxCheckBox* m_cheats_checkbox;
|
||||
wxCheckBox* m_force_ntscj_checkbox;
|
||||
|
||||
wxChoice* m_frame_limit_choice;
|
||||
wxChoice* m_throttler_choice;
|
||||
|
||||
wxRadioBox* m_cpu_engine_radiobox;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue