mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #2677 from thedax/hdRemasterSupport
HDRemaster support: Fix memory sizes for Eiyuu Sensetsu games
This commit is contained in:
commit
336bfbb49d
1 changed files with 17 additions and 9 deletions
|
@ -37,13 +37,21 @@ struct HDRemaster {
|
|||
// TODO: Do all of the remasters aside from Monster Hunter use double texture coordinates?
|
||||
// TODO: Are all remasters happy with this end address?
|
||||
const struct HDRemaster g_HDRemasters[] = {
|
||||
{ "NPJB40001", 0x4000000, false }, // MONSTER HUNTER PORTABLE 3rd HD Ver.
|
||||
{ "BLJM85002", 0x4000000, true }, // K-ON Houkago Live HD Ver
|
||||
{ "NPJB40002", 0x4000000, true }, // K-ON Houkago Live HD Ver
|
||||
{ "BLJM85003", 0x4000000, true }, // Shin Sangoku Musou Multi Raid 2 HD Ver
|
||||
{ "NPJB40003", 0x4000000, true }, // Shin Sangoku Musou Multi Raid 2 HD Ver
|
||||
{ "BLJM85004", 0x4000000, true }, // Eiyuu Densetsu Sora no Kiseki FC Kai HD Edition
|
||||
{ "NPJB40004", 0x4000000, true }, // Eiyuu Densetsu Sora no Kiseki FC Kai HD Edition
|
||||
{ "BLJM85005", 0x4000000, true }, // Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition
|
||||
{ "NPJB40005", 0x4000000, true }, // Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition
|
||||
{ "NPJB40001", 0x4000000, false }, // MONSTER HUNTER PORTABLE 3rd HD Ver.
|
||||
{ "BLJM85002", 0x4000000, true }, // K-ON Houkago Live HD Ver
|
||||
{ "NPJB40002", 0x4000000, true }, // K-ON Houkago Live HD Ver
|
||||
{ "BLJM85003", 0x4000000, true }, // Shin Sangoku Musou Multi Raid 2 HD Ver
|
||||
{ "NPJB40003", 0x4000000, true }, // Shin Sangoku Musou Multi Raid 2 HD Ver
|
||||
{ "BLJM85004", 0x4000000, true }, // Eiyuu Densetsu Sora no Kiseki FC Kai HD Edition, this one is never used
|
||||
// deactivated because it also affects the UMD version of the game
|
||||
// TODO: Differentiate between UMD version and HD version (either through reading of UMD_DATA.BIN or ISO size)
|
||||
// { "ULJM05170", 0x4000000, true }, // Eiyuu Densetsu Sora no Kiseki FC Kai HD Edition
|
||||
{ "BLJM85005", 0x4C00000, true }, // Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition, this one is never used
|
||||
// deactivated because it also affects the UMD version of the game
|
||||
// TODO: Differentiate between UMD version and HD version (either through reading of UMD_DATA.BIN or ISO size)
|
||||
// { "ULJM05277", 0x4C00000, true }, // Eiyuu Densetsu: Sora no Kiseki SC Kai HD Edition, game needs 76 MB
|
||||
{ "BLJM85006", 0x4C00000, true }, // Eiyuu Densetsu: Sora no Kiseki 3rd Kai HD Edition, this one is never used
|
||||
// deactivated because it also affects the UMD version of the game
|
||||
// TODO: Differentiate between UMD version and HD version (either through reading of UMD_DATA.BIN or ISO size)
|
||||
// { "ULJM05353", 0x4C00000, true }, // Eiyuu Densetsu: Sora no Kiseki 3rd Kai HD Edition, game needs 76 MB
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue