diff options
author | canni2007 <canni2007@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-11-21 14:28:31 +0000 |
---|---|---|
committer | canni2007 <canni2007@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-11-21 14:28:31 +0000 |
commit | 4123c655bc0cdc48e536e256637b8b89d7fa839b (patch) | |
tree | 00fa190e0aca86f828337bc6b7b64a006753569e /Game | |
parent | 5df73e98e5afc59a410d73b7fedbbc4975d40dfa (diff) | |
download | usdx-4123c655bc0cdc48e536e256637b8b89d7fa839b.tar.gz usdx-4123c655bc0cdc48e536e256637b8b89d7fa839b.tar.xz usdx-4123c655bc0cdc48e536e256637b8b89d7fa839b.zip |
Fixed a little typo when there is more than one instance of ultrastar deluxe
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1@621 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game')
-rw-r--r-- | Game/Code/UltraStar.dpr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/UltraStar.dpr b/Game/Code/UltraStar.dpr index af56d4b0..fe8b5a9d 100644 --- a/Game/Code/UltraStar.dpr +++ b/Game/Code/UltraStar.dpr @@ -156,7 +156,7 @@ begin //Programm already started
if (hWnd <> 0) then
begin
- I := Messagebox(0, PChar('Another Instance of Ultrastar is already running. Contėnue ?'), PChar(WndTitle), MB_ICONWARNING or MB_YESNO);
+ I := Messagebox(0, PChar('Another Instance of Ultrastar is already running. Continue ?'), PChar(WndTitle), MB_ICONWARNING or MB_YESNO);
if (I = IDYes) then
begin
I := 1;
|