Avoid warning in VS 2022

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6460 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
cutealien 2023-04-11 13:19:12 +00:00 committed by sfan5
parent c2dd664fc6
commit 5e01152f56
1 changed files with 1 additions and 1 deletions

View File

@ -725,7 +725,7 @@ IRenderTarget* COpenGLDriver::addRenderTarget()
// small helper function to create vertex buffer object address offsets
static inline const GLvoid * buffer_offset(const long offset)
static inline const GLvoid * buffer_offset(const size_t offset)
{
return (const GLvoid *)offset;
}