fix offset in botanik

This commit is contained in:
dinkc64 2019-07-23 11:15:28 -04:00
parent 03558fb37e
commit 8f524f32d4
1 changed files with 7 additions and 1 deletions

View File

@ -1579,7 +1579,13 @@ STD_ROM_FN(botanic)
static INT32 BotanicInit()
{
botanic_input_xor = 0x02;
return BagmanCommonInit(4, 1);
INT32 nRet = BagmanCommonInit(4, 1);
if (!nRet) {
GenericTilemapSetOffsets(0, 0, -16);
}
return nRet;
}
struct BurnDriver BurnDrvBotanic = {