[MT #4668] Fix cart region names [Miodrag Milanovic]

This commit is contained in:
Miodrag Milanovic 2012-02-09 12:08:07 +00:00
parent 5cc4b7f047
commit b09cf6cbc1
2 changed files with 12 additions and 12 deletions

View File

@ -517,14 +517,14 @@ struct megatech_cart_region
// we keep old region tags for compatibility with older macros... this might be changed at a later stage
static const struct megatech_cart_region megatech_cart_table[] =
{
{ "cart1", 0, "game0" },
{ "cart2", 1, "game1" },
{ "cart3", 2, "game2" },
{ "cart4", 3, "game3" },
{ "cart5", 4, "game4" },
{ "cart6", 5, "game5" },
{ "cart7", 6, "game6" },
{ "cart8", 7, "game7" },
{ ":cart1", 0, "game0" },
{ ":cart2", 1, "game1" },
{ ":cart3", 2, "game2" },
{ ":cart4", 3, "game3" },
{ ":cart5", 4, "game4" },
{ ":cart6", 5, "game5" },
{ ":cart7", 6, "game6" },
{ ":cart8", 7, "game7" },
{ 0 }
};

View File

@ -2336,10 +2336,10 @@ struct stv_cart_region
static const struct stv_cart_region stv_cart_table[] =
{
{ "cart1", 0, "game0" },
{ "cart2", 1, "game1" },
{ "cart3", 2, "game2" },
{ "cart4", 3, "game3" },
{ ":cart1", 0, "game0" },
{ ":cart2", 1, "game1" },
{ ":cart3", 2, "game2" },
{ ":cart4", 3, "game3" },
{ 0 }
};