From 1a5f90b2f293ebeb1603c58389b1a78558fc5899 Mon Sep 17 00:00:00 2001 From: kramm Date: Mon, 22 Oct 2001 15:59:48 +0000 Subject: [PATCH] GetName now uses GetTagPos, not GetTagPosPtr (which doesn't exist anymore) --- lib/modules/swftools.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/swftools.c b/lib/modules/swftools.c index 7f3865b..1b10385 100644 --- a/lib/modules/swftools.c +++ b/lib/modules/swftools.c @@ -234,7 +234,7 @@ char* GetName(LPTAG t) switch(GetTagID(t)) { case ST_FRAMELABEL: - name = GetTagPosPtr(t); + name = &t->data[GetTagPos(t)]; break; case ST_PLACEOBJECT2: { U8 flags = GetU8(t); @@ -249,7 +249,7 @@ char* GetName(LPTAG t) GetU16(t); if(flags&PF_NAME) { ResetBitmask(t); - name = GetTagPosPtr(t); + name = &t->data[GetTagPos(t)]; } } break; -- 1.7.10.4