From 871a76b46b4fdf8ae6d91afd11cb640b5e77aa7c Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 22 Feb 2009 15:49:33 +0000 Subject: [PATCH] Use GameWindow.Exit() instead of GameWindow.ExitAsync(). --- Source/Examples/Tests/InputLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Examples/Tests/InputLogger.cs b/Source/Examples/Tests/InputLogger.cs index da7fe73c..ebb6de38 100644 --- a/Source/Examples/Tests/InputLogger.cs +++ b/Source/Examples/Tests/InputLogger.cs @@ -95,7 +95,7 @@ namespace Examples.Tests { base.OnClosing(e); - hidden.ExitAsync(); + hidden.Exit(); while (hidden.Exists) Thread.Sleep(100);