fix for typo in windows branch of delimiter definition

This commit is contained in:
tomhog 2020-11-12 12:40:22 +00:00
parent 3ecd94babc
commit 8a783eedb0

View File

@ -275,7 +275,7 @@ bool osgDB::setCurrentWorkingDirectory( const std::string &newCurrentWorkingDire
void osgDB::convertStringPathIntoFilePathList(const std::string& paths,FilePathList& filepath) void osgDB::convertStringPathIntoFilePathList(const std::string& paths,FilePathList& filepath)
{ {
#if defined(_WIN32) && !defined(__CYGWIN__) #if defined(_WIN32) && !defined(__CYGWIN__)
char delimitor = ';'; char delimiter = ';';
#else #else
char delimiter = ':'; char delimiter = ':';
#endif #endif