hle: service: nvflinger: Fix implicit conversion.
This commit is contained in:
parent
02282477e7
commit
6d160873c4
|
@ -298,7 +298,10 @@ s64 NVFlinger::GetNextTicks() const {
|
||||||
speed_scale = 0.01f;
|
speed_scale = 0.01f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return static_cast<s64>(((1000000000 * (1LL << swap_interval)) / max_hertz) * speed_scale);
|
|
||||||
|
const auto next_ticks = ((1000000000 * (1LL << swap_interval)) / max_hertz);
|
||||||
|
|
||||||
|
return static_cast<s64>(speed_scale * static_cast<float>(next_ticks));
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Service::NVFlinger
|
} // namespace Service::NVFlinger
|
||||||
|
|
Reference in New Issue