I can't seem to figure out how to fill the ENTIRE screen with grass whenever I try I am always one block thingy off (P.S, I am a noob at this, so don't judge meh)
Would be easier to debug if you showed source code. 2 things might be wrong.
1: If you're using BGFILL then it should be BGFILL 2,0,0,25,15
2: If you're using BGPUT in a FOR loop, then.
FOR X=0 TO 25
FOR X=0 TO 15
BGPUT 2,X,Y,91
NEXT
NEXT
@MSW Sorry mate, didn't read your post closely enough at first. And using a for loop is a better way of filling the BG because typically it will be more than one bg tile.