mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 12:15:45 +00:00
frontend_common: Add option to read unsigned integers
This commit is contained in:
parent
73ad94a025
commit
eb0d351274
3 changed files with 34 additions and 2 deletions
|
@ -283,7 +283,8 @@ void QtConfig::ReadUIGamelistValues() {
|
|||
const int favorites_size = BeginArray("favorites");
|
||||
for (int i = 0; i < favorites_size; i++) {
|
||||
SetArrayIndex(i);
|
||||
UISettings::values.favorited_ids.append(ReadIntegerSetting(std::string("program_id")));
|
||||
UISettings::values.favorited_ids.append(
|
||||
ReadUnsignedIntegerSetting(std::string("program_id")));
|
||||
}
|
||||
EndArray();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue