Yes, Titus the fox is just Moktar with a fox

.
I first played it on a 8086 8 MHz, with a mcga card (the first vga) and I don't think that kind of computers had a vram like the MD/Gen, that's why the scroll is bad, because the PC version was made to run on slow PC's, like that 8 Mhz one, and it had to draw and move every pixel and every tile on screen and then move all the scene i think... So it only scrolls at certain points.
I looked at the scroll.c in the source:
Code: Select all
.
.
.
if ((!XSCROLL_CENTER) &&
((pstileX > screen_width - ALERT_X / 16) || //Player is on the right screen edge
(pstileX < ALERT_X/16))) { //Player is on the left screen edge
XLIMIT_SCROLL = screen_width / 2; //Scroll until player is in center
XSCROLL_CENTER = true; //start scrolling
}
.
.
.
If I could compile it on my pc to try and fix the scroll...
