Need to impliment screen scrolling when the player moves. Currently the player just wraps around. Scrolling should be both horizontal and vertical to give the open world feel.
Horizontal should be fine, vertical is where issues arise. Top and bottom line of sprites share a buffer so will have to pick between screen tearing or work around and just black border it.
merging the two might cause some issues but it is possible - see FFIV NES Demake (has scrren tearing).
Screen scrolling should only start when near the edge of the screen, not fix the player in the center of the screen.
Need to disable the screen scrolling in boss screens .
Need to impliment screen scrolling when the player moves. Currently the player just wraps around. Scrolling should be both horizontal and vertical to give the open world feel.