From fd0cd9c045a22ebc97c04333df807e95fda56dab Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Sun, 19 Feb 2006 06:05:15 +0000 Subject: [PATCH] Partial fix to karaoke mode Originally committed to SVN as r76. --- core/audio_display.cpp | 4 ++-- core/version.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/audio_display.cpp b/core/audio_display.cpp index f5e269558..05bc81986 100644 --- a/core/audio_display.cpp +++ b/core/audio_display.cpp @@ -1631,7 +1631,7 @@ void AudioDisplay::Next() { CommitChanges(); } else if (result == wxCANCEL) { - karaoke->curSyllable--; + karaoke->curSyllable = karaoke->syllables.size()-1; return; } } @@ -1669,7 +1669,7 @@ void AudioDisplay::Prev() { CommitChanges(); } else if (result == wxCANCEL) { - karaoke->curSyllable++; + karaoke->curSyllable = 0; return; } } diff --git a/core/version.h b/core/version.h index 42c14ec0e..8653e6e85 100644 --- a/core/version.h +++ b/core/version.h @@ -37,5 +37,5 @@ #ifdef _DEBUG #define VERSION_STRING _T("v1.10 Beta (debug)") #else -#define VERSION_STRING _T("v1.10 Beta") +#define VERSION_STRING _T("v1.10 Beta PRE-RELEASE") #endif