mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2024-12-22 14:49:21 +00:00
fix: compile error
This commit is contained in:
parent
2389916b9d
commit
e0378903d9
1 changed files with 5 additions and 8 deletions
|
@ -168,7 +168,7 @@ impl crate::disk::state::Xvb {
|
|||
ui.add_space(space_h);
|
||||
|
||||
let mut is_slider_enabled = true;
|
||||
let hashrate_xmrig = {
|
||||
let mut hashrate_xmrig = {
|
||||
if lock!(gui_api_xmrig).hashrate_raw_15m > 0.0 {
|
||||
lock!(gui_api_xmrig).hashrate_raw_15m
|
||||
} else if lock!(gui_api_xmrig).hashrate_raw_1m > 0.0 {
|
||||
|
@ -183,13 +183,10 @@ impl crate::disk::state::Xvb {
|
|||
|
||||
|
||||
// Adjust maximum slider amount based on slider metric
|
||||
match self.manual_donation_metric {
|
||||
ManualDonationMetric::Kilo => {
|
||||
hashrate_xmrig /= 1000.0;
|
||||
},
|
||||
ManualDonationMetric::Mega => {
|
||||
hashrate_xmrig /= 1_000_000.0;
|
||||
}
|
||||
if self.manual_donation_metric == ManualDonationMetric::Kilo {
|
||||
hashrate_xmrig /= 1000.0;
|
||||
} else if self.manual_donation_metric == ManualDonationMetric::Mega {
|
||||
hashrate_xmrig /= 1_000_000.0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue