Added UintPtr and IntPtr.

Changed cUIControl::mData to UintPtr.
Updated SOIL2.
This commit is contained in:
Martín Lucas Golini
2013-09-26 17:46:26 -03:00
parent 39f402ddec
commit d621f6cea3
3 changed files with 6 additions and 4 deletions

View File

@@ -447,11 +447,11 @@ cUIControl * cUIControl::NextGetLoop() const {
return mNext;
}
void cUIControl::Data( const Uint32& data ) {
void cUIControl::Data(const UintPtr& data ) {
mData = data;
}
const Uint32& cUIControl::Data() const {
const UintPtr& cUIControl::Data() const {
return mData;
}