summaryrefslogtreecommitdiffhomepage
path: root/StarsEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2024-03-10 18:21:47 +0100
committerAki <please@ignore.pl>2024-03-10 18:21:47 +0100
commit088e32554431606e8c6ccf4ee58c08bee0a66817 (patch)
tree64c4c6c7d09b6409f68b7b2506218544985ace57 /StarsEx
parentd55d9b1ef859ba940c75895fe198bcc4b19fa82b (diff)
downloadstarshatter-088e32554431606e8c6ccf4ee58c08bee0a66817.zip
starshatter-088e32554431606e8c6ccf4ee58c08bee0a66817.tar.gz
starshatter-088e32554431606e8c6ccf4ee58c08bee0a66817.tar.bz2
Fixed little bug that prevented listing saved campaign files
Diffstat (limited to 'StarsEx')
-rw-r--r--StarsEx/CampaignSaveGame.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/StarsEx/CampaignSaveGame.cpp b/StarsEx/CampaignSaveGame.cpp
index b225612..b151dce 100644
--- a/StarsEx/CampaignSaveGame.cpp
+++ b/StarsEx/CampaignSaveGame.cpp
@@ -725,7 +725,7 @@ CampaignSaveGame::GetSaveGameList(List<Text>& save_list)
bool use_file_sys = loader->IsFileSystemEnabled();
loader->UseFileSystem(true);
loader->SetDataPath(GetSaveDirectory() + "/");
- loader->ListFiles("*.*", save_list);
+ loader->ListFiles("*", save_list);
loader->SetDataPath(0);
loader->UseFileSystem(use_file_sys);