diff options
-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;
|