Hi, i was trying to make an video recorder for my O.S. (via int 08h), so i started by creating an DOS interrupt to make it. This interrupt tries to identify the video mode trough the int 010h, and then records the video memory in the hard disk, in the correct mode for the identified video mode. It works fine with various programs and video modes, both text and graphic, but i got stuck on the simpsons game for DOS, what uses an video mode that seems to be 320*200 with 256 colors, and int 010h is informing that too (mode 04h), but the recording doesn't work on this game, all i got are some columns, and the rest stay black. I made various tests, and i tried to write on that video mode (inside the game), like i would do on the mode 04h, but only some columns change, the rest stay untouched.
Searching on the internet i found something about "unusual" or "undocumented" video modes, that are "branches" of video mode 04h, but they didn't explain how to operate on those video modes. And the worst, i lost those pages, so now i have nothing talking about it. Do someone know about those video modes? Thanks for the help

.
Obs.: This game tries to replace the int 08h, so i had to make some tricks to fool the game, so my original int 08h can stay running.