Skip to content

Commit 203c819

Browse files
authored
Loader -> Geode in LoadingLayer status text
1 parent 591a9b7 commit 203c819

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

loader/src/hooks/LoadingLayer.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,19 +94,19 @@ struct CustomLoadingLayer : Modify<CustomLoadingLayer, LoadingLayer> {
9494

9595
void setupLoaderResources() {
9696
log::debug("Verifying Loader Resources");
97-
this->setSmallText("Verifying Loader Resources");
97+
this->setSmallText("Verifying Geode Resources");
9898
// verify loader resources
9999
Loader::get()->queueInMainThread([&]() {
100100
if (!updater::verifyLoaderResources()) {
101101
log::debug("Downloading Loader Resources");
102-
this->setSmallText("Downloading Loader Resources");
102+
this->setSmallText("Downloading Geode Resources");
103103
this->addChild(EventListenerNode<updater::ResourceDownloadFilter>::create(
104104
this, &CustomLoadingLayer::updateResourcesProgress
105105
));
106106
}
107107
else {
108108
log::debug("Loading Loader Resources");
109-
this->setSmallText("Loading Loader Resources");
109+
this->setSmallText("Loading Geode Resources");
110110
updater::updateSpecialFiles();
111111
this->continueLoadAssets();
112112
}
@@ -117,12 +117,12 @@ struct CustomLoadingLayer : Modify<CustomLoadingLayer, LoadingLayer> {
117117
std::visit(makeVisitor {
118118
[&](updater::UpdateProgress const& progress) {
119119
this->setSmallText(fmt::format(
120-
"Downloading Loader Resources: {}%", progress.first
120+
"Downloading Geode Resources: {}%", progress.first
121121
));
122122
},
123123
[&](updater::UpdateFinished) {
124124
log::debug("Downloaded Loader Resources");
125-
this->setSmallText("Downloaded Loader Resources");
125+
this->setSmallText("Downloaded Geode Resources");
126126
this->continueLoadAssets();
127127
},
128128
[&](updater::UpdateFailed const& error) {
@@ -136,7 +136,7 @@ struct CustomLoadingLayer : Modify<CustomLoadingLayer, LoadingLayer> {
136136
"The game will be loaded as normal, but please be aware "
137137
"that it is very likely to crash. "
138138
);
139-
this->setSmallText("Failed Loader Resources");
139+
this->setSmallText("Failed to Download Geode Resources");
140140
this->continueLoadAssets();
141141
}
142142
}, event->status);

0 commit comments

Comments
 (0)