diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-08 13:52:51 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-05-08 13:52:51 +0200 |
commit | 491a437df51192f76ac19cee1ba2001365697cc4 (patch) | |
tree | ada1019b3c7351a5ca6daf38273490a6a145a79c /platform/linuxbsd/os_linuxbsd.cpp | |
parent | c9f81045be9760820a1bb4898f08d2ff9784d4b7 (diff) | |
parent | 273a6eeb66ed1ff2fcc1ee3a6eaae4eedf437875 (diff) | |
download | redot-engine-491a437df51192f76ac19cee1ba2001365697cc4.tar.gz |
Merge pull request #76540 from reduz/redo-remote-filesystem
Redo how the remote filesystem works
Diffstat (limited to 'platform/linuxbsd/os_linuxbsd.cpp')
-rw-r--r-- | platform/linuxbsd/os_linuxbsd.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/linuxbsd/os_linuxbsd.cpp b/platform/linuxbsd/os_linuxbsd.cpp index 11c81be4a9..82500f83cb 100644 --- a/platform/linuxbsd/os_linuxbsd.cpp +++ b/platform/linuxbsd/os_linuxbsd.cpp @@ -195,6 +195,10 @@ void OS_LinuxBSD::set_main_loop(MainLoop *p_main_loop) { main_loop = p_main_loop; } +String OS_LinuxBSD::get_identifier() const { + return "linuxbsd"; +} + String OS_LinuxBSD::get_name() const { #ifdef __linux__ return "Linux"; |