Set default percentage to 100% so that the progress bar goes away if device detection is skipped

This commit is contained in:
Adam Honse 2020-08-06 22:21:19 -05:00
parent f8af9980fd
commit 9c4e73bbed
2 changed files with 7 additions and 1 deletions

View file

@ -14,6 +14,12 @@ ResourceManager *ResourceManager::get()
return instance.get();
}
ResourceManager::ResourceManager()
{
detection_percent = 100;
detection_string = "";
}
ResourceManager::~ResourceManager()
{
for(i2c_smbus_interface* bus : busses)

View file

@ -20,7 +20,7 @@ class ResourceManager
public:
static ResourceManager *get();
ResourceManager() = default;
ResourceManager();
~ResourceManager();
void RegisterI2CBus(i2c_smbus_interface *);