(svn r15603) -Fix [FS#2696]: crash when using an extraordinarily large sprite as cursor.

This commit is contained in:
rubidium
2009-03-03 20:33:57 +00:00
parent 07df0d05dc
commit b55ed2e668
2 changed files with 13 additions and 4 deletions

View File

@@ -123,6 +123,15 @@ public:
}
return this->buffer;
}
/**
* Get the currently allocated buffer.
* @return the buffer
*/
FORCEINLINE const T *GetBuffer() const
{
return this->buffer;
}
};
/**