From cd741a2beb082a9f444756e519832e2f0d5d6aa9 Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Thu, 20 Feb 2014 03:07:14 -0500 Subject: [PATCH] samples/games/scrabble: Fixed hang on exit --- samples/games/scrabble/scrabble.ec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/samples/games/scrabble/scrabble.ec b/samples/games/scrabble/scrabble.ec index 6864c86..864c384 100644 --- a/samples/games/scrabble/scrabble.ec +++ b/samples/games/scrabble/scrabble.ec @@ -1009,7 +1009,9 @@ class ScrabbleApp : GuiApplication void Terminate() { + Unlock(); scrabbleService.Stop(); + Lock(); delete scrabbleGame; } } -- 1.8.3.1