forgotten to adjust yF.F and xF.F when doing restore.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1025 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
vsc 2004-03-10 15:01:13 +00:00
parent 2e3221a68d
commit 52f4e07c49
1 changed files with 2 additions and 0 deletions

View File

@ -711,6 +711,7 @@ restore_opcodes(yamop *pc)
case _p_float_x:
case _p_cut_by_x:
pc->u.xF.x = XAdjust(pc->u.xF.x);
pc->u.xF.F = PtoOpAdjust(pc->u.xF.F);
pc = NEXTOP(pc,xF);
break;
/* instructions type y */
@ -735,6 +736,7 @@ restore_opcodes(yamop *pc)
case _p_float_y:
case _p_cut_by_y:
pc->u.yF.y = YAdjust(pc->u.yF.y);
pc->u.yF.F = PtoOpAdjust(pc->u.yF.F);
pc = NEXTOP(pc,yF);
break;
/* instructions type sla */