diff options
Diffstat (limited to 'Stars45/Campaign.cpp')
-rw-r--r-- | Stars45/Campaign.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Stars45/Campaign.cpp b/Stars45/Campaign.cpp index fb7fdbe..7d943e0 100644 --- a/Stars45/Campaign.cpp +++ b/Stars45/Campaign.cpp @@ -1,6 +1,6 @@ /* Project Starshatter 4.5
Destroyer Studios LLC
- Copyright © 1997-2006. All Rights Reserved.
+ Copyright (C) 1997-2006. All Rights Reserved.
SUBSYSTEM: Stars.exe
FILE: Campaign.cpp
@@ -1678,9 +1678,9 @@ Campaign::DeleteMission(int id) char full_path[256];
if (path[strlen(path)-1] == '/')
- sprintf_s(full_path, "%s%s", path, m->script);
+ sprintf_s(full_path, "%s%s", path, m->script.data());
else
- sprintf_s(full_path, "%s/%s", path, m->script);
+ sprintf_s(full_path, "%s/%s", path, m->script.data());
DeleteFile(full_path);
Load();
|