[Scummvm-cvs-logs] CVS: scummvm/common/scaler hq2x.cpp,1.13,1.14 hq3x.cpp,1.11,1.12
Max Horn
fingolfin at users.sourceforge.net
Sun May 8 14:52:15 CEST 2005
Update of /cvsroot/scummvm/scummvm/common/scaler
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28088/common/scaler
Modified Files:
hq2x.cpp hq3x.cpp
Log Message:
Comply to our coding conventions
Index: hq2x.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/scaler/hq2x.cpp,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- hq2x.cpp 1 Jan 2005 16:08:50 -0000 1.13
+++ hq2x.cpp 8 May 2005 21:49:32 -0000 1.14
@@ -49,7 +49,7 @@
int hasVectorUnit = 0;
size_t length = sizeof(hasVectorUnit);
int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0);
- if( 0 == error )
+ if ( 0 == error )
return hasVectorUnit != 0;
return false;
}
Index: hq3x.cpp
===================================================================
RCS file: /cvsroot/scummvm/scummvm/common/scaler/hq3x.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- hq3x.cpp 1 Jan 2005 16:08:50 -0000 1.11
+++ hq3x.cpp 8 May 2005 21:49:40 -0000 1.12
@@ -49,7 +49,7 @@
int hasVectorUnit = 0;
size_t length = sizeof(hasVectorUnit);
int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0);
- if( 0 == error )
+ if ( 0 == error )
return hasVectorUnit != 0;
return false;
}
More information about the Scummvm-git-logs
mailing list