aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llappviewerwin32.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-12-09 22:25:37 -0600
committerJacek Antonelli2008-12-09 22:25:41 -0600
commit22b861982f2efd5d16097a012627e73b9fb85834 (patch)
tree6152a84b92c682e271bdd52d46cd1728454f679a /linden/indra/newview/llappviewerwin32.cpp
parentSecond Life viewer sources 1.22.1-RC (diff)
downloadmeta-impy-22b861982f2efd5d16097a012627e73b9fb85834.zip
meta-impy-22b861982f2efd5d16097a012627e73b9fb85834.tar.gz
meta-impy-22b861982f2efd5d16097a012627e73b9fb85834.tar.bz2
meta-impy-22b861982f2efd5d16097a012627e73b9fb85834.tar.xz
Second Life viewer sources 1.22.2-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llappviewerwin32.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/linden/indra/newview/llappviewerwin32.cpp b/linden/indra/newview/llappviewerwin32.cpp
index bf02087..2a6fd60 100644
--- a/linden/indra/newview/llappviewerwin32.cpp
+++ b/linden/indra/newview/llappviewerwin32.cpp
@@ -85,6 +85,7 @@ LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *excepti
85 85
86 // Translate the signals/exceptions into cross-platform stuff 86 // Translate the signals/exceptions into cross-platform stuff
87 // Windows implementation 87 // Windows implementation
88 _tprintf( _T("Entering Windows Exception Handler...\n") );
88 llinfos << "Entering Windows Exception Handler..." << llendl; 89 llinfos << "Entering Windows Exception Handler..." << llendl;
89 90
90 // Make sure the user sees something to indicate that the app crashed. 91 // Make sure the user sees something to indicate that the app crashed.
@@ -92,6 +93,7 @@ LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *excepti
92 93
93 if (LLApp::isError()) 94 if (LLApp::isError())
94 { 95 {
96 _tprintf( _T("Got another fatal signal while in the error handler, die now!\n") );
95 llwarns << "Got another fatal signal while in the error handler, die now!" << llendl; 97 llwarns << "Got another fatal signal while in the error handler, die now!" << llendl;
96 98
97 retval = EXCEPTION_EXECUTE_HANDLER; 99 retval = EXCEPTION_EXECUTE_HANDLER;
@@ -122,6 +124,7 @@ LONG WINAPI viewer_windows_exception_handler(struct _EXCEPTION_POINTERS *excepti
122 return retval; 124 return retval;
123} 125}
124 126
127//#define DEBUGGING_SEH_FILTER 1
125#if DEBUGGING_SEH_FILTER 128#if DEBUGGING_SEH_FILTER
126# define WINMAIN DebuggingWinMain 129# define WINMAIN DebuggingWinMain
127#else 130#else