Skip to content

Commit

Permalink
Avoid collision with "uint" on older compilers.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikogenvik authored and paroj committed Nov 27, 2017
1 parent 22fab7e commit ca665a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Samples/TextureArray/include/TextureArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class _OgreSampleClassExport Sample_TextureArray : public SdkSample
TexturePtr tex = TextureManager::getSingleton().createManual("TextureArrayTex",
ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME,
TEX_TYPE_2D_ARRAY,
512, 512, (uint)texNames.size(),
512, 512, (Ogre::uint)texNames.size(),
0,
PF_X8R8G8B8 );

Expand Down

0 comments on commit ca665a6

Please sign in to comment.