diff options
author | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2011-03-20 16:54:21 +0000 |
---|---|---|
committer | brunzelchen <brunzelchen@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2011-03-20 16:54:21 +0000 |
commit | 8492c31f289c381c88c8e64309c8b4b8f195b173 (patch) | |
tree | f5c1f0f82f66cedd4d16b9b82a82bdca045dd4c5 | |
parent | ff42f27b35ffa71954d725a39c06d114d237e05d (diff) | |
download | usdx-8492c31f289c381c88c8e64309c8b4b8f195b173.tar.gz usdx-8492c31f289c381c88c8e64309c8b4b8f195b173.tar.xz usdx-8492c31f289c381c88c8e64309c8b4b8f195b173.zip |
fix: tone string in editor
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1 Challenge MOD@2810 b956fd51-792f-4845-bead-9b4dfca2ff2c
-rw-r--r-- | Game/Code/Screens/UScreenEditSub.pas | 2 | ||||
-rw-r--r-- | Game/Code/UltraStar.dpr | 2 | ||||
-rw-r--r-- | Installer/settings/variables.nsh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Game/Code/Screens/UScreenEditSub.pas b/Game/Code/Screens/UScreenEditSub.pas index 7d61a0dd..4af7f67c 100644 --- a/Game/Code/Screens/UScreenEditSub.pas +++ b/Game/Code/Screens/UScreenEditSub.pas @@ -3757,7 +3757,7 @@ begin 7: Result := 'g';
8: Result := 'g#';
9: Result := 'a';
- 10: Result := 'b';
+ 10: Result := 'a#';
11: Result := 'h';
end;
diff --git a/Game/Code/UltraStar.dpr b/Game/Code/UltraStar.dpr index 5b2d892d..37b69d2f 100644 --- a/Game/Code/UltraStar.dpr +++ b/Game/Code/UltraStar.dpr @@ -123,7 +123,7 @@ uses const
VersionName = 'UltraStar Deluxe Challenge, Medley & Duet Edition';
- VersionNumber = 'r9.13';
+ VersionNumber = 'r9.14';
var
WndTitle: string;
diff --git a/Installer/settings/variables.nsh b/Installer/settings/variables.nsh index 8665e05a..1b50c8e0 100644 --- a/Installer/settings/variables.nsh +++ b/Installer/settings/variables.nsh @@ -1,7 +1,7 @@ ; These are the common used variables
; for the USdx Challenge, Medley & Duet Edition Installation Wizard
-!define version "r9.13" ; Current version of UltraStar Deluxe Challenge, Medley & Duet Edition
+!define version "r9.14" ; Current version of UltraStar Deluxe Challenge, Medley & Duet Edition
!define p_name "UltraStar Deluxe CMD Edition" ; Just the name of the program
!define publisher "USDX Team" ; Publisher
!define homepage "http://www.ultrastardeluxe.org/" ; Project Homepage
|