Skip to content

Commit

Permalink
More nullptr initializations
Browse files Browse the repository at this point in the history
  • Loading branch information
nico-abram committed Apr 2, 2018
1 parent 2c1d3d6 commit 1766eab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NotesLoaderSSC.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace SSC {
bool for_load_edit;
StepsTagInfo(SSCLoader* l, Song* s, const RString& p, bool fc)
:loader(l), song(s), path(p), has_own_timing(false), ssc_format(false),
from_cache(fc), for_load_edit(false)
from_cache(fc), for_load_edit(false), steps(nullptr), timing(nullptr)
{}
};
struct SongTagInfo
Expand Down

0 comments on commit 1766eab

Please sign in to comment.