misc.cpp

changeset 13
3955ff2a7d72
parent 0
c51cce84a9ac
child 18
a6732098fed8
--- a/misc.cpp	Sat Mar 16 00:35:36 2013 +0200
+++ b/misc.cpp	Sat Mar 16 01:32:47 2013 +0200
@@ -1,19 +1,19 @@
 #include "common.h"
 #include <math.h>
 
-double GetWordFloat (str& s, int n) {
+double GetWordFloat (str& s, const ushort n) {
 	return atof ((s / " ")[n]);
 }
 
-long GetWordInt (str& s, int n) {
+long GetWordInt (str& s, const ushort n) {
 	return atol ((s / " ")[n]);
 }
 
-vertex ParseVertex (str& s, int n) {
+vertex ParseVertex (str& s, const ushort n) {
 	vertex v;
 	v.x = GetWordFloat (s, n);
-	v.y = GetWordFloat (s, n+1);
-	v.z = GetWordFloat (s, n+2);
+	v.y = GetWordFloat (s, n + 1);
+	v.z = GetWordFloat (s, n + 2);
 	
 	return v;
 }

mercurial