mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-19 13:09:39 -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)
|
if(host.GetID() < 0)
|
||||||
continue;
|
continue;
|
||||||
if(manual_hosts_id_next <= host.GetID())
|
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;
|
manual_hosts[host.GetID()] = host;
|
||||||
}
|
}
|
||||||
settings.endArray();
|
settings.endArray();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue