diff --git a/EarthboundBattleBackgrounds/EarthboundBattleBackgrounds/main.cpp b/EarthboundBattleBackgrounds/EarthboundBattleBackgrounds/main.cpp index f6b146e..322f23e 100644 --- a/EarthboundBattleBackgrounds/EarthboundBattleBackgrounds/main.cpp +++ b/EarthboundBattleBackgrounds/EarthboundBattleBackgrounds/main.cpp @@ -353,9 +353,10 @@ public: Rom::BackgroundPalette&palette{rom.palettes[selectedPalette]}; for(uint8_t index=0;Pixel&col:palette.colors){ - FillRectDecal(vf2d{index*8.f,8.f+yOffset+9},{8,8},col); + FillRectDecal(vf2d{index*8.f,8.f},{8,8},col); index++; } + DrawRectDecal(vf2d{8.f,8.f},{8*16,8}); for(uint8_t row=0;Rom::BackgroundGraphics&graphics:rom.graphics){ for(uint8_t col=0;Rom::Tile&tile:graphics.tiles){ diff --git a/EarthboundBattleBackgrounds/x64/Debug/EarthboundBattleBackgrounds.exe b/EarthboundBattleBackgrounds/x64/Debug/EarthboundBattleBackgrounds.exe index 3f3590d..e1e9ff1 100644 Binary files a/EarthboundBattleBackgrounds/x64/Debug/EarthboundBattleBackgrounds.exe and b/EarthboundBattleBackgrounds/x64/Debug/EarthboundBattleBackgrounds.exe differ