Remove a pointless static bool

This commit is contained in:
Thomas Goyne 2014-06-27 15:29:45 -07:00
parent 6fec035958
commit b7a8dea753
1 changed files with 1 additions and 3 deletions

View File

@ -199,9 +199,7 @@ struct AssOverrideTagProto {
static std::vector<AssOverrideTagProto> proto;
static void load_protos() {
static bool loaded = false;
if (loaded) return;
loaded = true;
if (!proto.empty()) return;
proto.resize(56);
int i = 0;