summaryrefslogtreecommitdiff
path: root/platform/windows
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-04-17 23:38:47 +0200
committerRémi Verschelde <rverschelde@gmail.com>2017-04-17 23:39:04 +0200
commitdd55950b62a6b431fca1cb7438ff64ca2c77dbd7 (patch)
tree218f5c6d2ff3b31f3ae11617b66f1eae8cbf78da /platform/windows
parent474f18512aa45e8055f3b409846b8fa5e000878f (diff)
Drop EXEC PATHP?? super verbose info message
It seems to give nightmares to Windows users.
Diffstat (limited to 'platform/windows')
-rw-r--r--platform/windows/os_windows.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp
index 5b57da46d7..99b6890913 100644
--- a/platform/windows/os_windows.cpp
+++ b/platform/windows/os_windows.cpp
@@ -1990,7 +1990,6 @@ String OS_Windows::get_executable_path() const {
wchar_t bufname[4096];
GetModuleFileNameW(NULL, bufname, 4096);
String s = bufname;
- print_line("EXEC PATHP??: " + s);
return s;
}