IVideoDriver::setMaterialRendererName now using u32 for index like other similar functions

Other functions like getMaterialRendererName got switched to u32 in the past. I can see no reason why this one was left out, so changing it to be same as the rest.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6300 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
cutealien
2022-02-09 19:28:45 +00:00
committed by sfan5
parent 0acf0de2db
commit 739a9eaf7c
3 changed files with 5 additions and 5 deletions

View File

@ -585,7 +585,7 @@ namespace video
bool writeImageToFile(IImage* image, io::IWriteFile * file, u32 param = 0) override;
//! Sets the name of a material renderer.
void setMaterialRendererName(s32 idx, const char* name) override;
void setMaterialRendererName(u32 idx, const char* name) override;
//! Swap the material renderers used for certain id's
void swapMaterialRenderers(u32 idx1, u32 idx2, bool swapNames) override;