Code: Select all
videoSetModeSub( MODE_0_2D );
vramSetBankI( VRAM_I_SUB_BG_0x06208000 );
consoleInit( NULL, 0, BgType_Text4bpp, BgSize_T_256x256, 23, 2, false, true );
Code: Select all
videoSetModeSub( MODE_0_2D );
vramSetBankI( VRAM_I_SUB_BG_0x06208000 );
consoleInit( NULL, 0, BgType_Text4bpp, BgSize_T_256x256, 23, 2, false, true );
Code: Select all
//---------------------------------------------------------------------------------
u32 __attribute__((weak)) vramDefault() {
//---------------------------------------------------------------------------------
// map all VRAM banks to lcdc mode
VRAM_CR = 0x80808080;
VRAM_E_CR = 0x80;
VRAM_F_CR = 0x80;
VRAM_G_CR = 0x80;
VRAM_H_CR = 0x80;
VRAM_I_CR = 0x80;
dmaFillWords(0, BG_PALETTE, (2*1024)); // clear main and sub palette
dmaFillWords(0, OAM, 2*1024); // clear main and sub OAM
dmaFillWords(0, VRAM, 656*1024); // clear all VRAM
return vramSetPrimaryBanks(VRAM_A_MAIN_BG, VRAM_B_MAIN_SPRITE, VRAM_C_SUB_BG, VRAM_D_SUB_SPRITE);
}
Alright, I think that was the issue. I began having the problem again, but then I set the primary banks to LCD mode prior to the console code I had while changing them yet again afterwards to what I needed, and now it works just fine.WinterMute wrote:That's the init code, at some point we decided it would be a good idea to have a simple default VRAM setup on reaching main, later it cleared VRAM too. The vram default function can be overridden by implementing vramDefault in your own code (with C linkage) - current code looks like thisThere's a chance this could backfire if you're setting banks explicitly, for instance in your example if you moved bank C after your consoleInit call then I believe you'll lose the font on hardware at least. Haven't checked yet but I think the priorities for banks occupying the same memory work from A to I, high to low.Code: Select all
//--------------------------------------------------------------------------------- u32 __attribute__((weak)) vramDefault() { //--------------------------------------------------------------------------------- // map all VRAM banks to lcdc mode VRAM_CR = 0x80808080; VRAM_E_CR = 0x80; VRAM_F_CR = 0x80; VRAM_G_CR = 0x80; VRAM_H_CR = 0x80; VRAM_I_CR = 0x80; dmaFillWords(0, BG_PALETTE, (2*1024)); // clear main and sub palette dmaFillWords(0, OAM, 2*1024); // clear main and sub OAM dmaFillWords(0, VRAM, 656*1024); // clear all VRAM return vramSetPrimaryBanks(VRAM_A_MAIN_BG, VRAM_B_MAIN_SPRITE, VRAM_C_SUB_BG, VRAM_D_SUB_SPRITE); }
Even if you found this to be true in some scenario, I wouldn't count on it being true in every scenario. I recommend to always initialize every VRAM bank for the purposes you want.WinterMute wrote:There's a chance this could backfire if you're setting banks explicitly, for instance in your example if you moved bank C after your consoleInit call then I believe you'll lose the font on hardware at least. Haven't checked yet but I think the priorities for banks occupying the same memory work from A to I, high to low.
Users browsing this forum: Google [Bot] and 4 guests