mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2025-01-03 12:39:35 +00:00
fix: mismatched types
This commit is contained in:
parent
873be8fc87
commit
d9f8d3cd0b
1 changed files with 2 additions and 2 deletions
|
@ -73,12 +73,12 @@ pub(crate) fn calcul_donated_time(
|
||||||
}
|
}
|
||||||
|
|
||||||
let manual_amount = lock!(gui_api_xvb).stats_priv.runtime_manual_amount as u32;
|
let manual_amount = lock!(gui_api_xvb).stats_priv.runtime_manual_amount as u32;
|
||||||
if lock!(gui_api_xvb).stats_priv.runtime_mode == RuntimeMode::ManuallyDonante || avg_hr > 0 {
|
if lock!(gui_api_xvb).stats_priv.runtime_mode == RuntimeMode::ManuallyDonante || avg_hr > 0.0 {
|
||||||
spared_time = XVB_TIME_ALGO * manual_amount / (avg_hr as u32);
|
spared_time = XVB_TIME_ALGO * manual_amount / (avg_hr as u32);
|
||||||
info!("spared_time = 600 * {manual_amount} / {avg_hr} = {spared_time}")
|
info!("spared_time = 600 * {manual_amount} / {avg_hr} = {spared_time}")
|
||||||
}
|
}
|
||||||
|
|
||||||
if lock!(gui_api_xvb).stats_priv.runtime_mode == RuntimeMode::ManuallyKeep || avg_hr > 0 {
|
if lock!(gui_api_xvb).stats_priv.runtime_mode == RuntimeMode::ManuallyKeep || avg_hr > 0.0 {
|
||||||
spared_time = XVB_TIME_ALGO - (XVB_TIME_ALGO * manual_amount / (avg_hr as u32));
|
spared_time = XVB_TIME_ALGO - (XVB_TIME_ALGO * manual_amount / (avg_hr as u32));
|
||||||
info!("spared_time = 600 * {manual_amount} / {avg_hr} = {spared_time}")
|
info!("spared_time = 600 * {manual_amount} / {avg_hr} = {spared_time}")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue