diff options
author | Hugo Locurcio <hugo.l@openmailbox.org> | 2016-10-30 05:36:57 +0100 |
---|---|---|
committer | Zeno- <kde.psych@gmail.com> | 2016-10-30 14:36:57 +1000 |
commit | d43326021a9a7def27773ed1f7ec01992ed3abf6 (patch) | |
tree | 0c80e40b2cc86cd144be6ecb594fda3aa205cb74 /src | |
parent | 6d7b95d76355334ccb57638d35b123fb49456cf6 (diff) | |
download | minetest-d43326021a9a7def27773ed1f7ec01992ed3abf6.tar.gz minetest-d43326021a9a7def27773ed1f7ec01992ed3abf6.tar.bz2 minetest-d43326021a9a7def27773ed1f7ec01992ed3abf6.zip |
Rename testsounds/ directory to sounds/ (#1984)
Diffstat (limited to 'src')
-rw-r--r-- | src/game.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 1e4464cc4..9a03071dd 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -871,7 +871,7 @@ public: return; m_fetched.insert(name); - std::string base = porting::path_share + DIR_DELIM + "testsounds"; + std::string base = porting::path_share + DIR_DELIM + "sounds"; dst_paths.insert(base + DIR_DELIM + name + ".ogg"); dst_paths.insert(base + DIR_DELIM + name + ".0.ogg"); dst_paths.insert(base + DIR_DELIM + name + ".1.ogg"); |