mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-01 07:40:18 -04:00
show platform in load message
This commit is contained in:
parent
fe068a002c
commit
d0c6629ea3
1 changed files with 5 additions and 4 deletions
|
@ -112,12 +112,13 @@ int geodeEntry(void* platformData) {
|
|||
forwardCompatSuffix = " (forward compatibility mode)";
|
||||
|
||||
if (LoaderImpl::get()->getGameVersion().empty()) {
|
||||
log::info("Running {} {}{}", Mod::get()->getName(), Mod::get()->getVersion(),
|
||||
forwardCompatSuffix);
|
||||
log::info("Running {} {}{} on {}", Mod::get()->getName(), Mod::get()->getVersion(),
|
||||
forwardCompatSuffix, PlatformID::toString(GEODE_PLATFORM_TARGET));
|
||||
}
|
||||
else {
|
||||
log::info("Running {} {} in Geometry Dash v{}{}", Mod::get()->getName(),
|
||||
Mod::get()->getVersion(), LoaderImpl::get()->getGameVersion(), forwardCompatSuffix);
|
||||
log::info("Running {} {} in Geometry Dash v{}{} on {}", Mod::get()->getName(),
|
||||
Mod::get()->getVersion(), LoaderImpl::get()->getGameVersion(), forwardCompatSuffix,
|
||||
PlatformID::toString(GEODE_PLATFORM_TARGET));
|
||||
}
|
||||
|
||||
tryLogForwardCompat();
|
||||
|
|
Loading…
Add table
Reference in a new issue