From 06960d33e15bc80f9912fa92f11dd82388199bd6 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 17 Aug 2010 09:28:20 +0000 Subject: HUGO: Adding engine to the main tree svn-id: r52137 --- engines/hugo/engine.h | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100755 engines/hugo/engine.h (limited to 'engines/hugo/engine.h') diff --git a/engines/hugo/engine.h b/engines/hugo/engine.h new file mode 100755 index 0000000000..fa4eba4fbb --- /dev/null +++ b/engines/hugo/engine.h @@ -0,0 +1,43 @@ +/* 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 + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * $URL$ + * $Id$ + * + */ + +/* + * This code is based on original Hugo 1-3 Trilogy source code + * + * Copyright (c) 1989-1995 David P. Gray + * + */ + +#ifndef HUGO_ENGINE_H +#define HUGO_ENGINE_H +namespace Hugo { + +enum seqTextEngine { + // Strings used by the engine + kEsAdvertise = 0 +}; + +} // end of namespace Hugo +#endif // HUGO_ENGINE_H -- cgit v1.2.3 From 54c1a1463f2eadb8bf48c234f2474d395b7d62a6 Mon Sep 17 00:00:00 2001 From: Sven Hesse Date: Tue, 17 Aug 2010 23:55:31 +0000 Subject: HUGO: Fix file permissions 755->644 svn-id: r52177 --- engines/hugo/engine.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 engines/hugo/engine.h (limited to 'engines/hugo/engine.h') diff --git a/engines/hugo/engine.h b/engines/hugo/engine.h old mode 100755 new mode 100644 -- cgit v1.2.3 From ec9708694e886746af0d45d30bbf271c2061053f Mon Sep 17 00:00:00 2001 From: Arnaud Boutonné Date: Fri, 27 Aug 2010 09:48:53 +0000 Subject: HUGO: Hopefully fix GCC_PRINTF issue in util * Add a mask in each call of Warn(), Error() and Box() not using one * cleanup: use the same wording for 'End of namespace Hugo' in all files svn-id: r52406 --- engines/hugo/engine.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'engines/hugo/engine.h') diff --git a/engines/hugo/engine.h b/engines/hugo/engine.h index fa4eba4fbb..0d14d244b5 100644 --- a/engines/hugo/engine.h +++ b/engines/hugo/engine.h @@ -39,5 +39,6 @@ enum seqTextEngine { kEsAdvertise = 0 }; -} // end of namespace Hugo +} // End of namespace Hugo + #endif // HUGO_ENGINE_H -- cgit v1.2.3