diff options
author | Michael Pavone <pavone@retrodev.com> | 2016-08-22 09:46:18 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2016-08-22 09:46:18 -0700 |
commit | 4a56a7e2dfe615e03e81e29952003291090470fe (patch) | |
tree | e2a7fc9bc4d4188f934d8dcd80afba0ec278c8a7 /gst.c | |
parent | 00c00b816bac8f05e49f4733ecbedd363b0b8da2 (diff) |
Cleanup the separation of render backend and VDP code in preparation for having extra debug windows. Make determination of H40/H32 based on number of lines in each mode.
Diffstat (limited to 'gst.c')
-rw-r--r-- | gst.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -224,9 +224,6 @@ uint8_t vdp_load_gst(vdp_context * context, FILE * state_file) return 0; } context->double_res = (context->regs[REG_MODE_4] & (BIT_INTERLACE | BIT_DOUBLE_RES)) == (BIT_INTERLACE | BIT_DOUBLE_RES); - if (!context->double_res) { - context->framebuf = context->oddbuf; - } latch_mode(context); if (fread(tmp_buf, 1, CRAM_SIZE*2, state_file) != CRAM_SIZE*2) { fputs("Failed to read CRAM from savestate\n", stderr); |