Replaces unsigned integer for freq map's value to ensure reasonable p's

develop
Josh Cooper 2022-10-21 00:02:42 -07:00
parent f0baaff9db
commit a39d3f20a7
1 changed files with 1 additions and 1 deletions

@ -54,7 +54,7 @@ df::job* job_watched = nullptr;
int32_t timestamp = -1;
std::set<int32_t> job_tracker;
std::map<uint16_t,uint16_t> freq;
std::map<uint16_t,int16_t> freq;
std::default_random_engine RNG;
void enable_auto_unpause(color_ostream &out, bool state);