mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-23 23:36:18 +00:00
Fixed: a bug with interface due to the static keyword
This commit is contained in:
parent
c24f90fc26
commit
9b1a601c02
1 changed files with 1 additions and 1 deletions
|
@ -1029,7 +1029,7 @@ sint32 CViewRenderer::getTextureIdFromName (const string &sName) const
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
// convert to lowCase
|
// convert to lowCase
|
||||||
static string nameLwr = toLower(sName);
|
string nameLwr = toLower(sName);
|
||||||
string::size_type stripPng = nameLwr.find(".png");
|
string::size_type stripPng = nameLwr.find(".png");
|
||||||
if (stripPng != string::npos)
|
if (stripPng != string::npos)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue