mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-11-10 11:35:19 -05:00
Fix languages Zone name on Kaleido (#203)
This fix town/village and zone on maps in Kaleido menu.
This commit is contained in:
parent
eb97186f73
commit
17858fb67c
@ -3177,15 +3177,9 @@ void KaleidoScope_Update(GlobalContext* globalCtx)
|
|||||||
if (gSaveContext.language == LANGUAGE_ENG) {
|
if (gSaveContext.language == LANGUAGE_ENG) {
|
||||||
memcpy(pauseCtx->nameSegment + 0x400, ResourceMgr_LoadTexByName(mapNameTextures[36 + gSaveContext.worldMapArea]), 0xA00);
|
memcpy(pauseCtx->nameSegment + 0x400, ResourceMgr_LoadTexByName(mapNameTextures[36 + gSaveContext.worldMapArea]), 0xA00);
|
||||||
} else if (gSaveContext.language == LANGUAGE_GER) {
|
} else if (gSaveContext.language == LANGUAGE_GER) {
|
||||||
DmaMgr_SendRequest1(pauseCtx->nameSegment + 0x400,
|
memcpy(pauseCtx->nameSegment + 0x400, ResourceMgr_LoadTexByName(mapNameTextures[59 + gSaveContext.worldMapArea]), 0xA00);
|
||||||
(uintptr_t)_map_name_staticSegmentRomStart +
|
|
||||||
(((void)0, gSaveContext.worldMapArea) * 0xA00) + 0x16C00,
|
|
||||||
0xA00, "../z_kaleido_scope_PAL.c", 3780);
|
|
||||||
} else {
|
} else {
|
||||||
DmaMgr_SendRequest1(pauseCtx->nameSegment + 0x400,
|
memcpy(pauseCtx->nameSegment + 0x400, ResourceMgr_LoadTexByName(mapNameTextures[81 + gSaveContext.worldMapArea]), 0xA00);
|
||||||
(uintptr_t)_map_name_staticSegmentRomStart +
|
|
||||||
(((void)0, gSaveContext.worldMapArea) * 0xA00) + 0x24800,
|
|
||||||
0xA00, "../z_kaleido_scope_PAL.c", 3784);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// OTRTODO - player on pause
|
// OTRTODO - player on pause
|
||||||
|
Loading…
Reference in New Issue
Block a user