summaryrefslogtreecommitdiff
path: root/platform/windows/os_windows.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-10-11 12:34:10 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-10-11 12:34:10 +0200
commit6ad1a635ee19c6d263061cc661476cd94022de5b (patch)
tree3bc54c350635c05c4621e028beda4b60f7a8d83e /platform/windows/os_windows.cpp
parent3a2e749a10da4f4b2a78ef437d3c2682967e51ee (diff)
parenta92c564a026b4e2beda1b41124f05b55dc0b48ee (diff)
Merge pull request #67242 from akien-mga/cleanup-unused-defines
Cleanup unused defines in platform code
Diffstat (limited to 'platform/windows/os_windows.cpp')
-rw-r--r--platform/windows/os_windows.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp
index cbec31249e..2f69a3b07e 100644
--- a/platform/windows/os_windows.cpp
+++ b/platform/windows/os_windows.cpp
@@ -1123,15 +1123,7 @@ Error OS_Windows::move_to_trash(const String &p_path) {
}
OS_Windows::OS_Windows(HINSTANCE _hInstance) {
- ticks_per_second = 0;
- ticks_start = 0;
- main_loop = nullptr;
- process_map = nullptr;
-
hInstance = _hInstance;
-#ifdef STDOUT_FILE
- stdo = fopen("stdout.txt", "wb");
-#endif
#ifdef WASAPI_ENABLED
AudioDriverManager::add_driver(&driver_wasapi);
@@ -1160,7 +1152,4 @@ OS_Windows::OS_Windows(HINSTANCE _hInstance) {
}
OS_Windows::~OS_Windows() {
-#ifdef STDOUT_FILE
- fclose(stdo);
-#endif
}