mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-16 13:08:04 -04:00
Fix broken svn on 64bit
git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1681 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-09-22 Paul Giblock <drfaygo/at/gmail/dot/com>
|
||||
|
||||
* plugins/midi_import/portsmf/allegro.cpp:
|
||||
fixed broken SVN on 64bit systems. Who needs these printfs anyways?
|
||||
|
||||
2008-09-21 Tobias Doerffel <tobydox/at/users/dot/sourceforge/dot/net>
|
||||
|
||||
* src/core/plugin.cpp:
|
||||
|
||||
@@ -668,9 +668,6 @@ Alg_event_ptr Alg_events::uninsert(long index)
|
||||
{
|
||||
assert(0 <= index && index < len);
|
||||
Alg_event_ptr event = events[index];
|
||||
printf("memmove: %x from %x (%d)\n", (int) ( events + index ),
|
||||
(int) ( events + index + 1 ),
|
||||
(int)( sizeof(Alg_event_ptr) * (len - index - 1) ) );
|
||||
memmove(events + index, events + index + 1,
|
||||
sizeof(Alg_event_ptr) * (len - index - 1));
|
||||
len--;
|
||||
@@ -2194,8 +2191,6 @@ void Alg_tracks::reset()
|
||||
// all track events are incorporated into the seq,
|
||||
// so all we need to delete are the arrays of pointers
|
||||
for (int i = 0; i < len; i++) {
|
||||
printf("deleting track at %d (%x, this %x) = %x\n", i, (int) &(tracks[i]),
|
||||
(int) this, (int) tracks[i]);
|
||||
delete tracks[i];
|
||||
}
|
||||
if (tracks) delete [] tracks;
|
||||
|
||||
Reference in New Issue
Block a user