m6809: fix typo in device_post_load(), should fix various savestate regressions in drivers using this CPU family [Alex Jackson]

This commit is contained in:
Alex W. Jackson 2014-07-07 00:27:41 +00:00
parent 598632ebfa
commit 113fe7f12c

View File

@ -249,7 +249,7 @@ void m6809_base_device::device_post_load()
set_regop8(m_d.b.h); set_regop8(m_d.b.h);
break; break;
case M6809_B: case M6809_B:
set_regop8(m_d.b.h); set_regop8(m_d.b.l);
break; break;
case M6809_D: case M6809_D:
set_regop16(m_d); set_regop16(m_d);