1
0
mirror of https://github.com/pevans/erc-c.git synced 2024-12-21 23:29:16 +00:00

Add missing mach parameter to set_video/set_memory

This commit is contained in:
Peter Evans 2018-01-10 16:59:02 -06:00
parent 538b5ddaa0
commit 343d870399

View File

@ -222,10 +222,10 @@ apple2_reset(apple2 *mach)
mach->cpu->S = 0;
// Switch video mode back to 40 column text
apple2_set_video(VIDEO_40COL_TEXT);
apple2_set_video(mach, VIDEO_40COL_TEXT);
// Default to read from ROM
apple2_set_memory(MEMORY_BANK_ROM);
apple2_set_memory(mach, MEMORY_BANK_ROM);
}
/*