mirror of https://github.com/mgba-emu/mgba.git
Updater: Fix mUpdaterGetUpdateForChannel
This commit is contained in:
parent
12f7168e9f
commit
e3605d291c
|
@ -78,14 +78,7 @@ static void _updateMatch(const char* key, const char* value, void* user) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const char* item = &key[dotLoc + 1];
|
const char* item = &key[dotLoc + 1];
|
||||||
|
_updateUpdate(match->out, item, value);
|
||||||
struct Table* out = user;
|
|
||||||
struct mUpdate* update = HashTableLookup(out, match->channel);
|
|
||||||
if (!update) {
|
|
||||||
update = calloc(1, sizeof(*update));
|
|
||||||
HashTableInsert(out, match->channel, update);
|
|
||||||
}
|
|
||||||
_updateUpdate(update, item, value);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool mUpdaterInit(struct mUpdaterContext* context, const char* manifest) {
|
bool mUpdaterInit(struct mUpdaterContext* context, const char* manifest) {
|
||||||
|
|
Loading…
Reference in New Issue