From 6c2e4664db9799aedaa3665ba9060884eb0e8687 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 13 Feb 2004 22:25:08 +0000 Subject: [PATCH] fix comment --- stepmania/src/StepMania.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/StepMania.cpp b/stepmania/src/StepMania.cpp index 8f11416555..05ac33a881 100644 --- a/stepmania/src/StepMania.cpp +++ b/stepmania/src/StepMania.cpp @@ -865,7 +865,7 @@ int main(int argc, char* argv[]) * there, and gets picked up by the crash handler. (If we don't catch it, we'll * get a generic, useless "abnormal terminaiton" dialog.) In Linux, if we do this * we'll only get main() on the stack, but if we don't catch the exception, it'll - * just work. So, only catch exception& in Windows. */ + * just work. So, only catch generic exceptions in Windows. */ #if defined(_WINDOWS) try { /* exception */ #endif