From 52f4e07c49f848ce7bc4cbb13904e264920aafa8 Mon Sep 17 00:00:00 2001 From: vsc Date: Wed, 10 Mar 2004 15:01:13 +0000 Subject: [PATCH] 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 --- H/rheap.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/H/rheap.h b/H/rheap.h index ddaa67595..6950ff9e4 100644 --- a/H/rheap.h +++ b/H/rheap.h @@ -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 */