From d624ae5010d6dcaba697588511226dbc9a49ab00 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 21 May 2012 08:59:57 -0400 Subject: [PATCH] I think false was intended here. --- src/NotesLoaderBMS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NotesLoaderBMS.cpp b/src/NotesLoaderBMS.cpp index bb4ada5722..f2ceb79164 100644 --- a/src/NotesLoaderBMS.cpp +++ b/src/NotesLoaderBMS.cpp @@ -378,7 +378,7 @@ bool BMSSong::GetBackground( RString filename, RString path, RString &bgfile ) // FIXME: garbled file names seem to crash the app. // this might not be the best place to put this code. if( !utf8_is_valid(filename) ) - return -1; + return false; RString normalizedFilename = filename; RString dir = out->GetSongDir();