From 0fd98658a56388855bd22a04798cf423fafab0d8 Mon Sep 17 00:00:00 2001 From: Josh Allen Date: Fri, 21 Jul 2006 16:22:52 +0000 Subject: [PATCH] Add iterator condition All. Fixes linker error. --- stepmania/src/NoteData.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stepmania/src/NoteData.cpp b/stepmania/src/NoteData.cpp index 7de9855e98..a4117a3f99 100644 --- a/stepmania/src/NoteData.cpp +++ b/stepmania/src/NoteData.cpp @@ -42,6 +42,11 @@ bool IteratorCondition::Mines( const TapNote &tn ) return tn.type == TapNote::mine; } +bool IteratorCondition::All( const TapNote &tn ) +{ + return true; +} + NoteData::NoteData() { Init();