Skip to content

Commit bc031c6

Browse files
libretroadminLibretroAdmin
authored andcommitted
tools/settings_migrate_group: tolerate the 3DS initializer noise in its lanes
Two pre-existing pedantic initializer errors under the 3DS define, same class as the Lakka systemd toggle; measured on the parent tree and tolerated at exactly that count.
1 parent 41116bc commit bc031c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/settings_migrate_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ def _lakka(flags):
443443
# (systemd_service_toggle static initializer); the base LAKKA lane
444444
# already tolerates it with ('0','4'), so match that here rather than
445445
# abort a legitimate migration that happens to gate a row on LAKKA.
446-
_mok = ('0', '4') if 'HAVE_LAKKA' in _fl else ('0',)
446+
_mok = ('0', '4') if 'HAVE_LAKKA' in _fl else (('0', '2') if '_3DS' in _fl else ('0',))
447447
_iso += [('menu/menu_setting.c', CF + _d, _mok),
448448
('intl/msg_hash_us.c', CF + ' -DHAVE_LANGEXTRA' + _d, ('0',)),
449449
('configuration.c', CF + _lakka(_d), ('0',))]

0 commit comments

Comments
 (0)