fix wrong window size

This commit is contained in:
Nordup 2024-07-19 04:17:30 +04:00
parent ba96896507
commit c545b69a0d
2 changed files with 6 additions and 2 deletions

View file

@ -19,6 +19,10 @@ static func is_linux() -> bool:
return get_platform() == LINUX_BSD
static func is_macos() -> bool:
return get_platform() == MACOS
static func is_debug() -> bool:
return OS.is_debug_build()