mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-25 04:11:42 -04:00
fix silly entry
This commit is contained in:
parent
d8c0ba6799
commit
394cb96733
1 changed files with 3 additions and 4 deletions
|
@ -165,8 +165,8 @@ int geodeEntry(void* platformData) {
|
|||
}
|
||||
|
||||
// set up internal mod, settings and data
|
||||
if (!LoaderImpl::get()->setup()) {
|
||||
LoaderImpl::get()->setupInternalMod(
|
||||
if (!LoaderImpl::get()->setupInternalMod()) {
|
||||
LoaderImpl::get()->platformMessageBox(
|
||||
"Unable to Load Geode!",
|
||||
"There was an unknown fatal error setting up "
|
||||
"the internal mod and Geode can not be loaded."
|
||||
|
@ -176,8 +176,7 @@ int geodeEntry(void* platformData) {
|
|||
}
|
||||
|
||||
// set up loader, load mods, etc.
|
||||
auto setupRes = LoaderImpl::get()->setup();
|
||||
if (!setupRes) {
|
||||
if (!LoaderImpl::get()->setup()) {
|
||||
LoaderImpl::get()->platformMessageBox(
|
||||
"Unable to Load Geode!",
|
||||
"There was an unknown fatal error setting up "
|
||||
|
|
Loading…
Add table
Reference in a new issue