From c074c86b0c4a0c6be75c023c2c7cd975ef5cab47 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Wed, 12 Dec 2018 03:10:38 +0100 Subject: Minor access and synchronization corrections --- src/subconscious/graphics/GameWindow.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/subconscious/graphics/GameWindow.java') diff --git a/src/subconscious/graphics/GameWindow.java b/src/subconscious/graphics/GameWindow.java index 66fe26e..15faeef 100644 --- a/src/subconscious/graphics/GameWindow.java +++ b/src/subconscious/graphics/GameWindow.java @@ -28,8 +28,7 @@ public class GameWindow extends Frame implements Runnable, WindowListener { private volatile Scene scene = null; private Thread sceneThread = null; // stack of loaded scenes in the background that are paused - private volatile Stack> loadedScenes = new Stack<>(); - + private Stack> loadedScenes = new Stack<>(); private volatile Game game; public GameWindow(Game g) { -- cgit v1.2.1