git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
89aec8e
)
fixed opcode for GetUrl.
author
kramm
<kramm>
Wed, 31 Oct 2001 20:17:03 +0000
(20:17 +0000)
committer
kramm
<kramm>
Wed, 31 Oct 2001 20:17:03 +0000
(20:17 +0000)
lib/modules/swfaction.c
patch
|
blob
|
history
diff --git
a/lib/modules/swfaction.c
b/lib/modules/swfaction.c
index
d70d677
..
301c4c9
100644
(file)
--- a/
lib/modules/swfaction.c
+++ b/
lib/modules/swfaction.c
@@
-746,7
+746,7
@@
void action_GetUrl(char* url, char* label)
char*ptr = malloc(l1+l2+2);
strcpy(ptr, url);
strcat(&ptr[l2+1], label);
- swf_AddActionTAG(ACTION_GOTOLABEL, ptr, strlen(ptr));
+ swf_AddActionTAG(ACTION_GETURL, ptr, strlen(ptr));
}
//TODO:
void action_DefineFunction(U8*data, int len) {}