Elm label: Fix text sliding.

SVN revision: 60134
This commit is contained in:
Tom Hacohen 2011-06-09 14:17:07 +00:00
parent 00b8e22769
commit 51215c350e
1 changed files with 3 additions and 3 deletions

View File

@ -1483,7 +1483,7 @@ collections {
public message(Msg_Type:type, id, ...) {
if ((type == MSG_FLOAT_SET) && (id == 0)) {
new Float:duration;
duration = getarg(2);
duration = getfarg(2);
set_float(g_duration, duration);
}
}
@ -1609,7 +1609,7 @@ collections {
public message(Msg_Type:type, id, ...) {
if ((type == MSG_FLOAT_SET) && (id == 0)) {
new Float:duration;
duration = getarg(2);
duration = getfarg(2);
set_float(g_duration, duration);
}
}
@ -1734,7 +1734,7 @@ collections {
public message(Msg_Type:type, id, ...) {
if ((type == MSG_FLOAT_SET) && (id == 0)) {
new Float:duration;
duration = getarg(2);
duration = getfarg(2);
set_float(g_duration, duration);
}
}