From 7b1de5cff514bf059df0f52a04be18eb7e43d2a9 Mon Sep 17 00:00:00 2001 From: hybrid Date: Wed, 14 Jan 2009 18:01:51 +0000 Subject: [PATCH] Fix .x texture paths. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@2074 dfc29bdd-3216-0410-991c-e03cc46cb475 --- source/Irrlicht/CXMeshFileLoader.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/Irrlicht/CXMeshFileLoader.cpp b/source/Irrlicht/CXMeshFileLoader.cpp index b00a506a..dff65509 100644 --- a/source/Irrlicht/CXMeshFileLoader.cpp +++ b/source/Irrlicht/CXMeshFileLoader.cpp @@ -449,6 +449,7 @@ bool CXMeshFileLoader::readFileIntoMemory(io::IReadFile* file) readUntilEndOfLine(); FilePath = FileSystem->getFileDir(file->getFileName()); + FilePath += '/'; return true; }