CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/05/14 19:04:46
Modified files: . : ChangeLog server : font.cpp Log message: * server/font.cpp (readDefineFont, readDefineFont2_or_3): use symbolic names for tag type. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.3206&r2=1.3207 http://cvs.savannah.gnu.org/viewcvs/gnash/server/font.cpp?cvsroot=gnash&r1=1.28&r2=1.29 Patches: Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.3206 retrieving revision 1.3207 diff -u -b -r1.3206 -r1.3207 --- ChangeLog 14 May 2007 18:44:42 -0000 1.3206 +++ ChangeLog 14 May 2007 19:04:46 -0000 1.3207 @@ -1,5 +1,7 @@ 2007-05-14 Sandro Santilli <[EMAIL PROTECTED]> + * server/font.cpp (readDefineFont, readDefineFont2_or_3): use + symbolic names for tag type. * server/parser/shape_character_def.cpp (read): temporarely disabled the "don't set line and fill styles if not defined yet". It seems to break a lot of movies. We should find out why though, Index: server/font.cpp =================================================================== RCS file: /sources/gnash/gnash/server/font.cpp,v retrieving revision 1.28 retrieving revision 1.29 diff -u -b -r1.28 -r1.29 --- server/font.cpp 18 Apr 2007 09:35:42 -0000 1.28 +++ server/font.cpp 14 May 2007 19:04:46 -0000 1.29 @@ -17,7 +17,7 @@ // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // -/* $Id: font.cpp,v 1.28 2007/04/18 09:35:42 jgilmore Exp $ */ +/* $Id: font.cpp,v 1.29 2007/05/14 19:04:46 strk Exp $ */ // Based on the public domain work of Thatcher Ulrich <[EMAIL PROTECTED]> 2003 @@ -175,7 +175,7 @@ // Create & read the shape. shape_character_def* s = new shape_character_def; - s->read(in, 2, false, m); + s->read(in, SWF::DEFINESHAPE, false, m); // why not DEFINEFONT ? m_glyphs[i] = s; }} @@ -263,7 +263,7 @@ // Create & read the shape. shape_character_def* s = new shape_character_def; - s->read(in, 22, false, m); + s->read(in, SWF::DEFINESHAPE2, false, m); // why not DEFINEFONT2 ? m_glyphs[i] = s; }} _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit