mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-12 05:40:04 +00:00
Fix types
This commit is contained in:
parent
6f2eb2a418
commit
5f5646c850
3 changed files with 4 additions and 5 deletions
|
@ -164,8 +164,7 @@ void Module::UpdatePadCallback(u64 userdata, s64 cycles_late) {
|
|||
// TODO(xperia64): How the 3D Slider is updated by the HID module needs to be RE'd
|
||||
// and possibly moved to its own Core::Timing event.
|
||||
system.Kernel().GetSharedPageHandler().Set3DSlider(
|
||||
Settings::values.toggle_3d ? static_cast<float_le>(Settings::values.factor_3d) / 100
|
||||
: 0.0f);
|
||||
Settings::values.toggle_3d ? Settings::values.factor_3d / 100.0f : 0.0f);
|
||||
|
||||
// Reschedule recurrent event
|
||||
system.CoreTiming().ScheduleEvent(pad_update_ticks - cycles_late, pad_update_event);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue