mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-14 02:36:51 -07:00
Fix Manual Host ID reconstruction in GUI
This commit is contained in:
parent
308d6043f4
commit
88230d54d7
1 changed files with 1 additions and 1 deletions
|
@ -301,7 +301,7 @@ void Settings::LoadManualHosts()
|
|||
if(host.GetID() < 0)
|
||||
continue;
|
||||
if(manual_hosts_id_next <= host.GetID())
|
||||
manual_hosts_id_next = host.GetID();
|
||||
manual_hosts_id_next = host.GetID() + 1;
|
||||
manual_hosts[host.GetID()] = host;
|
||||
}
|
||||
settings.endArray();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue