mirror of
https://github.com/eried/portapack-mayhem.git
synced 2024-10-01 01:26:06 -04:00
Merge pull request #54 from argilo/fix-conversion-warning
Fix a narrowing conversion warning.
This commit is contained in:
commit
d7c5da73f4
@ -121,7 +121,7 @@ SetFrequencyCorrectionView::SetFrequencyCorrectionView(
|
|||||||
} });
|
} });
|
||||||
|
|
||||||
SetFrequencyCorrectionModel model {
|
SetFrequencyCorrectionModel model {
|
||||||
portapack::persistent_memory::correction_ppb() / 1000
|
(int8_t) (portapack::persistent_memory::correction_ppb() / 1000)
|
||||||
};
|
};
|
||||||
|
|
||||||
form_init(model);
|
form_init(model);
|
||||||
|
Loading…
Reference in New Issue
Block a user