Fix mouse enabling after restore state

This commit is contained in:
copy 2015-03-18 20:24:23 +01:00
parent 4420fc028a
commit 137c7a481d

View file

@ -118,6 +118,10 @@ function PS2(cpu, bus)
];
}
PS2.prototype._state_restore = function()
{
this.bus.send("mouse-enable", this.use_mouse);
};
PS2.prototype.mouse_irq = function()
{