summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/Starshatter.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-14 20:49:38 +0200
committerAki <please@ignore.pl>2022-04-14 20:49:38 +0200
commit62ab6eba358a4920c0143fdfd6a905a6836b012e (patch)
tree4cfd304a61fc728c84fe7ac7b3d3d45157693b25 /StarsEx/Starshatter.cpp
parent341c93b0fb4aedd262581ce6e81b700a9bdc1423 (diff)
downloadstarshatter-62ab6eba358a4920c0143fdfd6a905a6836b012e.zip
starshatter-62ab6eba358a4920c0143fdfd6a905a6836b012e.tar.gz
starshatter-62ab6eba358a4920c0143fdfd6a905a6836b012e.tar.bz2
Removed source groups as they didn't find their use in the end
Diffstat (limited to 'StarsEx/Starshatter.cpp')
-rw-r--r--StarsEx/Starshatter.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/StarsEx/Starshatter.cpp b/StarsEx/Starshatter.cpp
index 129efa9..f53638d 100644
--- a/StarsEx/Starshatter.cpp
+++ b/StarsEx/Starshatter.cpp
@@ -169,7 +169,7 @@ chat_mode(0), exit_time(1.2), cutscene(0)
DataLoader::Initialize();
loader = DataLoader::GetLoader();
- int loadstat = loader->MountDatafile("shatter.dat", DataLoader::Group::BASE);
+ int loadstat = loader->MountDatafile("shatter.dat");
if (loadstat == DataLoader::FAILED) {
::MessageBox(hwnd, loader->LastError(), "Starshatter - Error", MB_OK);
@@ -178,13 +178,13 @@ chat_mode(0), exit_time(1.2), cutscene(0)
}
if (loader->FindFile("vox.dat"))
- loader->MountDatafile("vox.dat", DataLoader::Group::BASE);
+ loader->MountDatafile("vox.dat");
if (loader->FindFile("start.dat"))
- loader->MountDatafile("start.dat", DataLoader::Group::BASE);
+ loader->MountDatafile("start.dat");
if (loader->FindFile("content.dat"))
- loader->MountDatafile("content.dat", DataLoader::Group::BASE);
+ loader->MountDatafile("content.dat");
LoadVideoConfig("video.cfg");