search for: c037a2c

Displaying 2 results from an estimated 2 matches for "c037a2c".

Did you mean: 203ca2c
2007 Jun 10
0
Branch 'as' - 5 commits - libswfdec/swfdec_mouse_as.c libswfdec/swfdec_movie_asprops.c test/trace
...(from f43ebc571a0c7aeae64c126c58f955c4466dc2ee) Author: Nguy???n Th??i Ng???c Duy <pclouds at gmail.com> Date: Sun Jun 10 23:05:52 2007 +0200 the mouse coordinates are scaled once too often diff --git a/libswfdec/swfdec_movie_asprops.c b/libswfdec/swfdec_movie_asprops.c index ff5f416..c037a2c 100644 --- a/libswfdec/swfdec_movie_asprops.c +++ b/libswfdec/swfdec_movie_asprops.c @@ -327,7 +327,7 @@ mc_xmouse_get (SwfdecMovie *movie, Swfde double x, y; swfdec_movie_get_mouse (movie, &x, &y); - x = rint (x * SWFDEC_TWIPS_SCALE_FACTOR) / SWFDEC_TWIPS_SCALE_FACTOR; + x = SWFD...
2007 Jun 13
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_sprite.c
..., + int clip_depth, + SwfdecEventList * events); void swfdec_movie_invalidate (SwfdecMovie * movie); void swfdec_movie_queue_update (SwfdecMovie * movie, SwfdecMovieCacheState state); diff --git a/libswfdec/swfdec_movie_asprops.c b/libswfdec/swfdec_movie_asprops.c index c037a2c..2288b0a 100644 --- a/libswfdec/swfdec_movie_asprops.c +++ b/libswfdec/swfdec_movie_asprops.c @@ -153,25 +153,13 @@ mc_framesloaded (SwfdecMovie *mov, Swfde static void mc_name_get (SwfdecMovie *movie, SwfdecAsValue *rval) { - const char *string; - - if (movie->has_name) { - string = mov...