mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Add nullable context to SabreTools.DatItems
This change also starts migrating the internals of the DatItem formats to the new internal models. Right now, it's basically just acting like a wrapper around those models.
This commit is contained in:
@@ -105,12 +105,12 @@ namespace SabreTools.DatFiles.Formats
|
||||
var machine = items[0].Machine;
|
||||
var software = new Models.OpenMSX.Software
|
||||
{
|
||||
Title = machine.Name,
|
||||
GenMSXID = machine.GenMSXID,
|
||||
System = machine.System,
|
||||
Company = machine.Manufacturer,
|
||||
Year = machine.Year,
|
||||
Country = machine.Country,
|
||||
Title = machine?.Name,
|
||||
GenMSXID = machine?.GenMSXID,
|
||||
System = machine?.System,
|
||||
Company = machine?.Manufacturer,
|
||||
Year = machine?.Year,
|
||||
Country = machine?.Country,
|
||||
};
|
||||
|
||||
// Create holder for dumps
|
||||
|
||||
Reference in New Issue
Block a user