diff options
Diffstat (limited to '3rdparty/bgfx/tools/texturev/texturev.cpp')
-rw-r--r-- | 3rdparty/bgfx/tools/texturev/texturev.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/3rdparty/bgfx/tools/texturev/texturev.cpp b/3rdparty/bgfx/tools/texturev/texturev.cpp index ef976d626f4..28e298acbf7 100644 --- a/3rdparty/bgfx/tools/texturev/texturev.cpp +++ b/3rdparty/bgfx/tools/texturev/texturev.cpp @@ -224,7 +224,7 @@ struct View } std::string name = path; - char ch = name.back(); + char ch = name[name.size()-1]; name += '/' == ch || '\\' == ch ? "" : "/"; name += item->d_name; m_fileList.push_back(name); |