CVSROOT: /sources/gnash Module name: gnash Changes by: Sandro Santilli <strk> 07/11/28 16:59:37
Modified files: gui : gui.cpp . : ChangeLog Log message: fix build with ENABLE_REGION_UPDATES_DEBUGGING defined. CVSWeb URLs: http://cvs.savannah.gnu.org/viewcvs/gnash/gui/gui.cpp?cvsroot=gnash&r1=1.115&r2=1.116 http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.4996&r2=1.4997 Patches: Index: gui/gui.cpp =================================================================== RCS file: /sources/gnash/gnash/gui/gui.cpp,v retrieving revision 1.115 retrieving revision 1.116 diff -u -b -r1.115 -r1.116 --- gui/gui.cpp 24 Nov 2007 17:21:41 -0000 1.115 +++ gui/gui.cpp 28 Nov 2007 16:59:36 -0000 1.116 @@ -594,14 +594,14 @@ float ymin = bounds.getMinY(); float ymax = bounds.getMaxY(); - corners[0].m_x = xmin; - corners[0].m_y = ymin; - corners[1].m_x = xmax; - corners[1].m_y = ymin; - corners[2].m_x = xmax; - corners[2].m_y = ymax; - corners[3].m_x = xmin; - corners[3].m_y = ymax; + corners[0].x = xmin; + corners[0].y = ymin; + corners[1].x = xmax; + corners[1].y = ymin; + corners[2].x = xmax; + corners[2].y = ymax; + corners[3].x = xmin; + corners[3].y = ymax; matrix dummy; gnash::render::set_matrix(dummy); // reset matrix gnash::render::draw_poly(&corners[0], 4, Index: ChangeLog =================================================================== RCS file: /sources/gnash/gnash/ChangeLog,v retrieving revision 1.4996 retrieving revision 1.4997 diff -u -b -r1.4996 -r1.4997 --- ChangeLog 28 Nov 2007 16:16:30 -0000 1.4996 +++ ChangeLog 28 Nov 2007 16:59:36 -0000 1.4997 @@ -1,5 +1,7 @@ 2007-11-28 Sandro Santilli <[EMAIL PROTECTED]> + * gui/cpp.cpp: fix build with ENABLE_REGION_UPDATES_DEBUGGING + defined. * server/swf/tag_loaders.cpp (inflate_wrapper): don't read past end of tag, reads in chunks rather then byte-by-byte. Fixes bug #21377. _______________________________________________ Gnash-commit mailing list Gnash-commit@gnu.org http://lists.gnu.org/mailman/listinfo/gnash-commit