From 62fc5ddbe076c914fc55f7e68f4ecc6c4216157b Mon Sep 17 00:00:00 2001 From: Paul Sladen Date: Sun, 26 Jul 2009 14:33:41 +0300 Subject: [PATCH] stop glGetError()s being fatal; print to Console instead --- openBVE/OpenBve/MainLoop.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/openBVE/OpenBve/MainLoop.cs b/openBVE/OpenBve/MainLoop.cs index e2631be..423a2eb 100644 --- a/openBVE/OpenBve/MainLoop.cs +++ b/openBVE/OpenBve/MainLoop.cs @@ -1585,8 +1585,8 @@ namespace OpenBve { message += error.ToString(); break; } - System.Windows.Forms.MessageBox.Show(message); - Quit = true; + Console.Error.WriteLine(message); + //Quit = true; } } #endif -- 1.6.0.4