diff options
Diffstat (limited to 'gui/newgui.cpp')
-rw-r--r-- | gui/newgui.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gui/newgui.cpp b/gui/newgui.cpp index bd7315add5..eefb3e2f64 100644 --- a/gui/newgui.cpp +++ b/gui/newgui.cpp @@ -1,5 +1,8 @@ -/* ScummVM - Scumm Interpreter - * Copyright (C) 2002-2006 The ScummVM project +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -32,6 +35,8 @@ #include "common/config-manager.h" +DECLARE_SINGLETON(GUI::NewGui); + namespace GUI { /* @@ -307,6 +312,8 @@ void NewGui::runLoop() { case Common::EVENT_SCREEN_CHANGED: screenChange(); break; + default: + break; } } |