openbsd-ports/graphics/flash/patches/patch-Lib_matrix_h
2010-05-23 16:20:47 +00:00

20 lines
439 B
Plaintext

$OpenBSD: patch-Lib_matrix_h,v 1.1 2010/05/23 16:20:47 espie Exp $
--- Lib/matrix.h.orig Sun May 23 18:16:21 2010
+++ Lib/matrix.h Sun May 23 18:16:29 2010
@@ -33,13 +33,13 @@ struct Matrix { (public)
#endif
inline
- long Matrix::getX(long x, long y)
+ long getX(long x, long y)
{
return (long) (x*a+y*b+tx);
};
inline
- long Matrix::getY(long x, long y)
+ long getY(long x, long y)
{
return (long) (x*c+y*d+ty);
};