fixed nametable prerender bug
This commit is contained in:
parent
674ee5059b
commit
bcbcea5d15
|
@ -34,7 +34,7 @@ struct Bus* createBus(SDL_Renderer* renderer)
|
|||
memset(bus->ram, 0x00, 0x18);
|
||||
|
||||
// Create and insert cartridge
|
||||
bus->cartridge = createCartridge(bus, "roms/nestest.nes");
|
||||
bus->cartridge = createCartridge(bus, "roms/donkeykong.nes");
|
||||
|
||||
// Create CPU and attach it
|
||||
bus->cpu = createCPU(bus);
|
||||
|
|
|
@ -104,6 +104,6 @@ void Mapper000_GetPatternTableTexture(void* mapper, SDL_Texture* texture, int in
|
|||
int pitch;
|
||||
void* pixels;
|
||||
SDL_LockTexture(texture, NULL, &pixels, &pitch);
|
||||
SDL_memcpy(pixels, sMapper->chr_rom + 0x1000 * index, 0x1000);
|
||||
SDL_memcpy(pixels, sMapper->chr_rom + (size_t)0x1000 * index, 0x1000);
|
||||
SDL_UnlockTexture(texture);
|
||||
}
|
||||
|
|
|
@ -357,12 +357,12 @@ SDL_Texture* getRenderedNameTableTexture(struct PPU* ppu, int index)
|
|||
struct Pixel* pixels;
|
||||
SDL_LockTexture(target, NULL, (void**)&pixels, &pitch);
|
||||
|
||||
Byte patternTable = 0x1000 * ppu->ppuCtrl.bgTile;
|
||||
Word patternTable = 0x1000 * ppu->ppuCtrl.bgTile;
|
||||
for (int y = 0; y < 30; y++)
|
||||
{
|
||||
for (int x = 0; x < 32; x++)
|
||||
{
|
||||
Byte offset = ppu->nameTables[index][y * 32 + x];
|
||||
Byte offset = ppu->nameTables[index][(size_t)y * 32 + x];
|
||||
|
||||
for (int row = 0; row < 8; row++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue