From 73027462ec8980ffaee30fe80264e7eeaae57c69 Mon Sep 17 00:00:00 2001 From: Daniel Collin Date: Mon, 1 Jul 2013 10:57:00 +0200 Subject: [PATCH] Cleanup --- ogl_editor/src/Editor.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/ogl_editor/src/Editor.c b/ogl_editor/src/Editor.c index 16bc63b..62d71f9 100644 --- a/ogl_editor/src/Editor.c +++ b/ogl_editor/src/Editor.c @@ -214,12 +214,8 @@ static int getNextTrack() return group->tracks[track->groupIndex + 1]->index; } - printf("groupName %s : index %d\n", group->name, group->groupIndex); - groupIndex = group->groupIndex; - printf("%d %d\n", groupIndex, trackData->groupCount); - // We are at the last track in the last group so just return the current one if (groupIndex >= trackData->groupCount-1) @@ -228,14 +224,7 @@ static int getNextTrack() // Get the next group and select the first track in it group = &trackData->groups[groupIndex + 1]; - printf("next group %s\n", group->name); - - printf("newIndex %d\n", group->tracks[0]->index); return group->tracks[0]->index; - - printf("should not be here\n"); - - return 0; } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////