summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/files.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-05-12 22:28:05 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2014-05-12 22:28:30 -0600
commitee78884211beef838e019cbba952b2880d7ec505 (patch)
tree047ba2d8bc40ddc6184fab3686f58ff99b448268 /crawl-ref/source/files.cc
parentc99bbcdc1e4f27e1d6e1a25a6275415ccc2be6ea (diff)
downloadcrawl-ref-ee78884211beef838e019cbba952b2880d7ec505.tar.gz
crawl-ref-ee78884211beef838e019cbba952b2880d7ec505.zip
Don't print a debug message to the player on loading bones.
Diffstat (limited to 'crawl-ref/source/files.cc')
-rw-r--r--crawl-ref/source/files.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/files.cc b/crawl-ref/source/files.cc
index 032fd24f34..252407918b 100644
--- a/crawl-ref/source/files.cc
+++ b/crawl-ref/source/files.cc
@@ -1769,7 +1769,7 @@ static vector<string> _list_bones()
string old_bonefile = _get_old_bonefile_directory() + base_filename;
if (access(old_bonefile.c_str(), F_OK) == 0)
- mprf("Found old bonefile %s", old_bonefile.c_str());
+ dprf("Found old bonefile %s", old_bonefile.c_str());
return bonefiles;
}