mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-08-24 06:18:21 -04:00
Merge pull request #54 from argilo/fix-conversion-warning
Fix a narrowing conversion warning.
This commit is contained in:
commit
d7c5da73f4
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