summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/project.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/common/project.cpp b/common/project.cpp
index 0a4e54e..bd4e1c2 100644
--- a/common/project.cpp
+++ b/common/project.cpp
@@ -336,7 +336,7 @@ bool Project::LoadPieceLibrary()
// Make sure that the path ends with a '/'
i = strlen(m_LibraryPath)-1;
if ((m_LibraryPath[i] != '\\') && (m_LibraryPath[i] != '/'))
- strcat(m_LibraryPath, '/');
+ strcat(m_LibraryPath, "/");
// Read the piece library index.
strcpy(filename, m_LibraryPath);
@@ -7066,3 +7066,16 @@ void Project::OnMouseMove(int x, int y)
} break;
}
}
+
+
+
+
+
+
+
+
+
+
+
+
+