diff options
author | Max Horn | 2002-04-28 00:56:52 +0000 |
---|---|---|
committer | Max Horn | 2002-04-28 00:56:52 +0000 |
commit | 75f1297a7da3dd7f2f522b209cf3e85158be3856 (patch) | |
tree | 258747a039dfa4ccd8691ce1a11d593d4e07f6eb | |
parent | 385a40114586aa5321eb17b4e9cbe6b0415a2ab4 (diff) | |
download | scummvm-rg350-75f1297a7da3dd7f2f522b209cf3e85158be3856.tar.gz scummvm-rg350-75f1297a7da3dd7f2f522b209cf3e85158be3856.tar.bz2 scummvm-rg350-75f1297a7da3dd7f2f522b209cf3e85158be3856.zip |
moved scummfg to config-file.h - seems more logical. Also added a legal header
svn-id: r4122
-rw-r--r-- | config-file.h | 25 | ||||
-rw-r--r-- | scumm.h | 2 |
2 files changed, 25 insertions, 2 deletions
diff --git a/config-file.h b/config-file.h index 154118b723..922724cce4 100644 --- a/config-file.h +++ b/config-file.h @@ -1,3 +1,25 @@ +/* ScummVM - Scumm Interpreter + * Copyright (C) 2001 Ludvig Strigeus + * Copyright (C) 2001/2002 The ScummVM project + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * $Header$ + * + */ + #ifndef __CONFIG_FILE_H__ #define __CONFIG_FILE_H__ @@ -22,4 +44,7 @@ class Config { int ndomains; }; +// The global config object +extern Config * scummcfg; + #endif @@ -1851,8 +1851,6 @@ void outputdisplay2(Scumm *s, int disp); extern const byte revBitMask[8]; //void blitToScreen(Scumm *s, byte *src, int x, int y, int w, int h); -extern Config * scummcfg; - #if defined(__GNUC__) void CDECL error(const char *s, ...) NORETURN; #else |