mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-12-23 19:40:58 -05:00
Fix a narrowing conversion warning.
This commit is contained in:
parent
f2cabadf60
commit
25c2e612c0
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue