File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
gaseous-signature-parser/classes/parsers Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1818 "launchConfigurationId" : " TargetFramework=;TestApp" ,
1919 "args" : [
2020 " -datpath" ,
21- " ${env:HOME}/Development/Signatures/NoIntro/DAT " ,
21+ " ${env:HOME}/Development/Signatures/Redump " ,
2222 " -dbpath" ,
2323 " ${env:HOME}/Development/Signatures/NoIntro/DB" ,
2424 " -outpath" ,
Original file line number Diff line number Diff line change @@ -376,6 +376,17 @@ public RomSignatureObject Parse(string XMLFile)
376376 romObject . Attributes . Add ( "serial" , gameSerial ) ;
377377 }
378378
379+ // apply country list to the rom object
380+ if ( romCountryList != null && romCountryList . Count > 0 )
381+ {
382+ romObject . Country = new Dictionary < string , string > ( romCountryList ) ;
383+ }
384+ // apply language list to the rom object
385+ if ( romLanguageList != null && romLanguageList . Count > 0 )
386+ {
387+ romObject . Language = new Dictionary < string , string > ( romLanguageList ) ;
388+ }
389+
379390 gameObject . Roms . Add ( romObject ) ;
380391 break ;
381392
You can’t perform that action at this time.
0 commit comments