diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-08-18 13:12:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-08-18 13:12:42 +0100 |
| commit | 6600d2bb68b49e70b71c89c9ae51cf1713fd0e08 (patch) | |
| tree | 88473369c2611fc829bd8bf569903e1f1531936e /src | |
| parent | 62e60473d474000af5ea63c68c0d402a2362731d (diff) | |
Fix previous.
Diffstat (limited to 'src')
| -rw-r--r-- | src/asset.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/asset.cc b/src/asset.cc index 4cdbcc08..3ee95227 100644 --- a/src/asset.cc +++ b/src/asset.cc @@ -94,7 +94,7 @@ Asset::write_to_assetmap (xmlpp::Node* node, boost::filesystem::path root) const */ string path_string = path.get().string (); - boost::replace_all (path_string, "\\/", "/"); + boost::replace_all (path_string, "\\", "/"); chunk->add_child("Path")->add_child_text (path_string); chunk->add_child("VolumeIndex")->add_child_text ("1"); |
