From 61000a1776e17f65ee1ac3ca089e4cf5c146a150 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 7 Nov 2011 02:04:25 -0500 Subject: [PATCH] Better warning. This may help with debugging. --- src/Steps.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Steps.cpp b/src/Steps.cpp index 91c6c0ace3..f706ed1ece 100644 --- a/src/Steps.cpp +++ b/src/Steps.cpp @@ -348,7 +348,8 @@ void Steps::Decompress() // We have NoteData on disk and not in memory. Load it. if (!this->GetNoteDataFromSimfile()) { - LOG->Warn("Couldn't load NoteData from \"%s\"", m_sFilename.c_str()); + LOG->Warn("Couldn't load the %s chart's NoteData from \"%s\"", + DifficultyToString(m_Difficulty).c_str(), m_sFilename.c_str()); return; }