Add missing active usage counter increment

This commit is contained in:
Dean Herbert
2021-03-31 15:16:01 +09:00
parent 37bf79e8a4
commit ecde6137e0

View File

@ -152,6 +152,7 @@ namespace osu.Game.Database
internal RealmUsage(RealmContextFactory factory)
{
active_usages.Value++;
Factory = factory;
Realm = factory.createContext();
}