mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-05-16 13:42:16 -04:00
Missing image files
This commit is contained in:
parent
82cb56e9b2
commit
a35d9ee8a9
12 changed files with 52 additions and 65 deletions
|
@ -112,10 +112,8 @@ std::string to_string_dec_int(
|
|||
return q;
|
||||
}
|
||||
|
||||
std::string to_string_short_freq(const uint64_t f, const int32_t l) {
|
||||
auto final_str = to_string_dec_int(f / 1000000, 4) + ".";
|
||||
final_str += to_string_dec_int((f / 100) % 10000, l, '0');
|
||||
|
||||
std::string to_string_short_freq(const uint64_t f) {
|
||||
auto final_str = to_string_dec_int(f / 1000000, 4) + "." + to_string_dec_int((f / 100) % 10000, 4, '0');
|
||||
return final_str;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue