mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-10 12:04:36 -04:00
open console early
This commit is contained in:
parent
e156f361b6
commit
7f772e9bee
1 changed files with 5 additions and 5 deletions
|
@ -218,6 +218,11 @@ int geodeEntry(void* platformData) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
// open console
|
||||
if (Mod::get()->getSettingValue<bool>("show-platform-console")) {
|
||||
Loader::get()->openPlatformConsole();
|
||||
}
|
||||
|
||||
// set up loader, load mods, etc.
|
||||
auto setupRes = LoaderImpl::get()->setup();
|
||||
if (!setupRes) {
|
||||
|
@ -233,11 +238,6 @@ int geodeEntry(void* platformData) {
|
|||
|
||||
log::info("Set up loader");
|
||||
|
||||
// open console
|
||||
if (Mod::get()->getSettingValue<bool>("show-platform-console")) {
|
||||
Loader::get()->openPlatformConsole();
|
||||
}
|
||||
|
||||
// download and install new loader update in the background
|
||||
if (Mod::get()->getSettingValue<bool>("auto-check-updates")) {
|
||||
LoaderImpl::get()->checkForLoaderUpdates();
|
||||
|
|
Loading…
Add table
Reference in a new issue