From 38bd0116d1f11c7f039bda0fc8b5418f1c38dae8 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 8 Mar 2005 21:18:00 +0000 Subject: [PATCH] ensure that memory is really freed --- stepmania/src/NoteData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/NoteData.cpp b/stepmania/src/NoteData.cpp index cce9fd655c..1830357eb3 100644 --- a/stepmania/src/NoteData.cpp +++ b/stepmania/src/NoteData.cpp @@ -18,7 +18,7 @@ NoteData::NoteData() void NoteData::Init() { ClearAll(); - m_TapNotes.clear(); + m_TapNotes = vector(); // ensure that the memory is freed } NoteData::~NoteData()