- Cartridge.Sound: |
+ Cart.Sound: |
Indicates if the game should use 1 or 2 channels for sound output.
All original Atari 2600 machines supported 1 channel only,
but some homebrew games have been written to take advantage of stereo
@@ -4119,19 +4119,19 @@ Ms Pac-Man (Stella extended codes):
- Console.TelevisionType: |
+ Console.TVType: |
Indicates the default television setting for the
game. The value must be Color or BW. |
- Console.LeftDifficulty: |
+ Console.LeftDiff: |
Indicates the default difficulty setting for the left
player. The value must be A or B. |
- Console.RightDifficulty: |
+ Console.RightDiff: |
Indicates the default difficulty setting for the
right player. The value must be A or B. |
@@ -4232,14 +4232,14 @@ Ms Pac-Man (Stella extended codes):
- Cartridge.Name: |
+ Cart.Name: |
Indicates the actual name of the game. When you save snapshots,
load/save state files, or use the ROM Audit Mode functionality,
this is the name that will be used for the respective file(s). |
- Cartridge.MD5: |
+ Cart.MD5: |
Indicates the MD5 checksum of the ROM image as a
string of hexadecimal digits. Stella uses this property while
attempting to match a game with its block of properties. If the
@@ -4250,22 +4250,22 @@ Ms Pac-Man (Stella extended codes):
|
- Cartridge.Manufacturer: |
+ Cart.Manufacturer: |
Indicates the game's manufacturer. |
- Cartridge.ModelNo: |
+ Cart.ModelNo: |
Indicates the manufacturer's model number for the game. |
- Cartridge.Rarity: |
+ Cart.Rarity: |
Indicates how rare a cartridge is, based on the scale described on AtariAge. |
- Cartridge.Note: |
+ Cart.Note: |
Contains any special notes about playing the game. |
diff --git a/src/tools/PropSet.pm b/src/tools/PropSet.pm
index 7cba557f9..0c40d7452 100755
--- a/src/tools/PropSet.pm
+++ b/src/tools/PropSet.pm
@@ -3,29 +3,29 @@ package PropSet;
# NOTE: If the property types ever change in Stella, the following hashmap
# and array must be updated (and stay in sequence)
my %prop_type = (
- "Cart.MD5" => 0,
- "Cart.Manufacturer" => 1,
- "Cart.ModelNo" => 2,
- "Cart.Name" => 3,
- "Cart.Note" => 4,
- "Cart.Rarity" => 5,
- "Cart.Sound" => 6,
- "Cart.StartBank" => 7,
- "Cart.Type" => 8,
- "Console.LeftDiff" => 9,
- "Console.RightDiff" => 10,
- "Console.TVType" => 11,
- "Console.SwapPorts" => 12,
- "Controller.Left" => 13,
- "Controller.Right" => 14,
- "Controller.SwapPaddles" => 15,
+ "Cart.MD5" => 0,
+ "Cart.Manufacturer" => 1,
+ "Cart.ModelNo" => 2,
+ "Cart.Name" => 3,
+ "Cart.Note" => 4,
+ "Cart.Rarity" => 5,
+ "Cart.Sound" => 6,
+ "Cart.StartBank" => 7,
+ "Cart.Type" => 8,
+ "Console.LeftDiff" => 9,
+ "Console.RightDiff" => 10,
+ "Console.TVType" => 11,
+ "Console.SwapPorts" => 12,
+ "Controller.Left" => 13,
+ "Controller.Right" => 14,
+ "Controller.SwapPaddles" => 15,
"Controller.PaddlesXCenter" => 16,
- "Controller.PaddlesYCenter" => 17,
- "Controller.MouseAxis" => 18,
- "Display.Format" => 19,
- "Display.VCenter" => 20,
- "Display.Phosphor" => 21,
- "Display.PPBlend" => 22
+ "Controller.PaddlesYCenter" => 17,
+ "Controller.MouseAxis" => 18,
+ "Display.Format" => 19,
+ "Display.VCenter" => 20,
+ "Display.Phosphor" => 21,
+ "Display.PPBlend" => 22
);
my @prop_type_as_string = (
"Cart.MD5",
|