mirror of https://github.com/mgba-emu/mgba.git
Res: Fix species name location in Ruby/Sapphire revs 1/2 (fixes #2685)
This commit is contained in:
parent
6fa2f74279
commit
5067eb621c
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
||||||
|
0.11.0: (Future)
|
||||||
|
Other fixes:
|
||||||
|
- Res: Fix species name location in Ruby/Sapphire revs 1/2 (fixes mgba.io/i/2685)
|
||||||
|
|
||||||
0.10.0: (2022-10-11)
|
0.10.0: (2022-10-11)
|
||||||
Features:
|
Features:
|
||||||
- Preliminary Lua scripting support
|
- Preliminary Lua scripting support
|
||||||
|
|
|
@ -412,6 +412,13 @@ local gameRubyEn = Generation3En:new{
|
||||||
_speciesNameTable=0x1f716c,
|
_speciesNameTable=0x1f716c,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local gameRubyEnR1 = Generation3En:new{
|
||||||
|
name="Ruby (USA)",
|
||||||
|
_party=0x3004360,
|
||||||
|
_partyCount=0x3004350,
|
||||||
|
_speciesNameTable=0x1f7184,
|
||||||
|
}
|
||||||
|
|
||||||
local gameSapphireEn = Generation3En:new{
|
local gameSapphireEn = Generation3En:new{
|
||||||
name="Sapphire (USA)",
|
name="Sapphire (USA)",
|
||||||
_party=0x3004360,
|
_party=0x3004360,
|
||||||
|
@ -419,6 +426,13 @@ local gameSapphireEn = Generation3En:new{
|
||||||
_speciesNameTable=0x1f70fc,
|
_speciesNameTable=0x1f70fc,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
local gameSapphireEnR1 = Generation3En:new{
|
||||||
|
name="Sapphire (USA)",
|
||||||
|
_party=0x3004360,
|
||||||
|
_partyCount=0x3004350,
|
||||||
|
_speciesNameTable=0x1f7114,
|
||||||
|
}
|
||||||
|
|
||||||
local gameEmeraldEn = Generation3En:new{
|
local gameEmeraldEn = Generation3En:new{
|
||||||
name="Emerald (USA)",
|
name="Emerald (USA)",
|
||||||
_party=0x20244ec,
|
_party=0x20244ec,
|
||||||
|
@ -471,6 +485,10 @@ gameCrc32 = {
|
||||||
[0x7d527d62] = gameYellowEn,
|
[0x7d527d62] = gameYellowEn,
|
||||||
[0x84ee4776] = gameFireRedEnR1,
|
[0x84ee4776] = gameFireRedEnR1,
|
||||||
[0xdaffecec] = gameLeafGreenEnR1,
|
[0xdaffecec] = gameLeafGreenEnR1,
|
||||||
|
[0x61641576] = gameRubyEnR1, -- Rev 1
|
||||||
|
[0xaeac73e6] = gameRubyEnR1, -- Rev 2
|
||||||
|
[0xbafedae5] = gameSapphireEnR1, -- Rev 1
|
||||||
|
[0x9cc4410e] = gameSapphireEnR1, -- Rev 2
|
||||||
}
|
}
|
||||||
|
|
||||||
function printPartyStatus(game, buffer)
|
function printPartyStatus(game, buffer)
|
||||||
|
|
Loading…
Reference in New Issue