mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Switch output fields around for AttractMode
This commit is contained in:
@@ -234,7 +234,7 @@ namespace SabreTools.Helper.Dats
|
|||||||
switch (datFormat)
|
switch (datFormat)
|
||||||
{
|
{
|
||||||
case DatFormat.AttractMode:
|
case DatFormat.AttractMode:
|
||||||
header = "#Name;Title;Emulator;CloneOf;Year;Manufacturer;Category;Players;Rotation;Control;Status;DisplayCount;DisplayType;AltRomname;AltTitle;Extra;Buttons\n";
|
header = "#Title;Name;Emulator;CloneOf;Year;Manufacturer;Category;Players;Rotation;Control;Status;DisplayCount;DisplayType;AltRomname;AltTitle;Extra;Buttons\n";
|
||||||
break;
|
break;
|
||||||
case DatFormat.ClrMamePro:
|
case DatFormat.ClrMamePro:
|
||||||
header = "clrmamepro (\n" +
|
header = "clrmamepro (\n" +
|
||||||
@@ -444,8 +444,8 @@ namespace SabreTools.Helper.Dats
|
|||||||
switch (datFormat)
|
switch (datFormat)
|
||||||
{
|
{
|
||||||
case DatFormat.AttractMode:
|
case DatFormat.AttractMode:
|
||||||
state += rom.Machine.Description + ";"
|
state += rom.Machine.Name + ";"
|
||||||
+ rom.Machine.Name + ";"
|
+ rom.Machine.Description + ";"
|
||||||
+ FileName + ";"
|
+ FileName + ";"
|
||||||
+ rom.Machine.CloneOf + ";"
|
+ rom.Machine.CloneOf + ";"
|
||||||
+ rom.Machine.Year + ";"
|
+ rom.Machine.Year + ";"
|
||||||
|
|||||||
Reference in New Issue
Block a user