Skip to content

Commit

Permalink
Remove condition preventing hot reload
Browse files Browse the repository at this point in the history
  • Loading branch information
manup committed May 27, 2024
1 parent 260d27c commit 8090717
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions device_descriptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2356,11 +2356,8 @@ static int DDF_ReloadBundleDevices(const char *desc, unsigned descSize, std::vec
if (rec.modelid.index != modelid_ati.index)
continue;

if (rec.loadState != DDF_LoadStateScheduled)
{
rec.loadState = DDF_LoadStateScheduled;
n_marked++;
}
rec.loadState = DDF_LoadStateScheduled;
n_marked++;
}
}

Expand Down

0 comments on commit 8090717

Please sign in to comment.