Skip to content

Commit

Permalink
Fix credits not showing in main menu (#36528)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhilkinSerg authored and BevapDin committed Dec 29, 2019
1 parent f10295a commit 7881181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ void main_menu::init_strings()
std::string line;
while( std::getline( stream, line ) ) {
if( line[0] != '#' ) {
mmenu_credits + ( line.empty() ? " " : line ) + "\n";
mmenu_credits += ( line.empty() ? " " : line ) + "\n";
}
}
} );
Expand Down

0 comments on commit 7881181

Please sign in to comment.