changeset 638:980c02db2f56

* Fixed a swig template that got missed in a previous commit
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 07 Oct 2010 16:15:09 +0000
parents 3822b30fd98c
children 685d250f2c2d
files engine/swigwrappers/python/fife.i.templ
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/engine/swigwrappers/python/fife.i.templ	Wed Oct 06 21:37:46 2010 +0000
+++ b/engine/swigwrappers/python/fife.i.templ	Thu Oct 07 16:15:09 2010 +0000
@@ -57,8 +57,8 @@
 	%template(DoubleVector) vector<double>;
 	%template(BoolVector) vector<bool>;
 
-	%template(UintUintPair) pair<unsigned int, unsigned int>;
-	%template(UintUintPairVector) vector<std::pair<unsigned int, unsigned int> >;
+	%template(Uint16Uint16Pair) pair<uint16_t, uint16_t>;
+	%template(Uint16Uint16PairVector) vector<std::pair<uint16_t, uint16_t> >;
 };
 
 %{