diff --git a/AUTHORS b/AUTHORS index c9c21f2bd2..37b6d5643c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,10 +1,10 @@ -eos - A reimplementation of BioWare's Aurora engine +xoreos - A reimplementation of BioWare's Aurora engine Copyright (c) 2010-2011 by the following: Sven Hesse (DrMcCoy) Matthew Hoops (clone2727) -eos is free software; you can redistribute it and/or +xoreos 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 3 of the License, or (at your option) any later version. @@ -36,20 +36,20 @@ Dragon Age: Origins, Copyright (c) BioWare corp. and Electronic Arts. boost.m4 ******** - eos uses Benoit Sigoure's boost.m4 autoconf macros + xoreos uses Benoit Sigoure's boost.m4 autoconf macros () to check for the needed Boost libraries. boost.m4 is licensed under version 3 or later of the GNU General Public License. ax_check_gl.m4 / ax_check_glu.m4 ******************************** - eos uses Braden McDaniel's autoconf macros + xoreos uses Braden McDaniel's autoconf macros () to check for OpenGL and GLU, licensed under version 2 or later of the GNU General Public License. freetype2.m4 ************ - eos uses Marcelo Magallon's autoconf macros to check for the FreeType 2 + xoreos uses Marcelo Magallon's autoconf macros to check for the FreeType 2 library. freetype2.m4 is part of the FreeType project () and distributed under the terms of the FreeType project license. As a special exception, it may be distributed as part of a @@ -58,49 +58,49 @@ freetype2.m4 glew **** - eos uses glew, The OpenGL Extension Wrangler Library + xoreos uses glew, The OpenGL Extension Wrangler Library (), to safely check for and use OpenGL 1.2+ features and extensions. To minimize dependencies on "uncommon" libraries, - eos completely includes the glew code, one of its suggested use methods. + xoreos completely includes the glew code, one of its suggested use methods. glew is licensed under the Modified BSD License, the Mesa 3-D License (MIT License), and the Khronos License (MIT License). lua *** - eos uses lua, a lightweight scripting language (), to + xoreos uses lua, a lightweight scripting language (), to handle scripts from The Witcher. To minimize dependencies on "uncommon" - libraries, eos completely includes the lua 5.0.3 code. Lua is licensed under - the terms of the MIT license. + libraries, xoreos completely includes the lua 5.0.3 code. Lua is licensed + under the terms of the MIT license. UTF-8 CPP ********* - eos uses the lightweight header-only UTF-8 CPP library + xoreos uses the lightweight header-only UTF-8 CPP library () for handling UTF-8 encoded strings. UTF-8 CPP is licensed under a copyleft license. See utf8cpp/utf8.h for details. Bink **** - The Bink decoder used in eos is based (heavily) on the Bink decoder in + The Bink decoder used in xoreos is based (heavily) on the Bink decoder in FFmpeg (), licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. Many thanks to Kostya Shishkov () for doing the hard work. WMA *** - The WMA decoder used in eos is based (heavily) on the WMA decoder in + The WMA decoder used in xoreos is based (heavily) on the WMA decoder in FFmpeg (), licensed under the GNU Lesser General Public License (LGPL) version 2.1 or later. DejaVu Sans Mono Bold ********************* - eos includes DejaVu Sans Mono Bold () as a + xoreos includes DejaVu Sans Mono Bold () as a monospaced system font. The DejaVu font family is based on the Vera Fonts (), distributed under the Bitstream Vera Fonts license (). ScummVM code ************ - eos uses some ScummVM () code, most prominently the + xoreos uses some ScummVM () code, most prominently the endian, singleton, stream and audio stream code. ScummVM is licensed under version 2 or later of the GNU General Public License. diff --git a/Doxyfile b/Doxyfile index 40888c5e00..97ac0f7bc8 100644 --- a/Doxyfile +++ b/Doxyfile @@ -25,7 +25,7 @@ DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. -PROJECT_NAME = eos +PROJECT_NAME = xoreos # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or diff --git a/FAQ b/FAQ index 91aa1ec0d1..1e749ab8c7 100644 --- a/FAQ +++ b/FAQ @@ -1,21 +1,21 @@ -Q: Why "eos"? +Q: Why "xoreos"? A: BioWare's first 3D engine (developed for Neverwinter Nights) was called "Aurora", the Roman goddess of dawn. "Eos" is her Greek name, so it kind of fits. -Q: Will eos be able to play later versions of BioWare engine? +Q: Will xoreos be able to play later versions of BioWare engine? A: Maybe/Probably. Both the Odyssey (Star Wars: Knights of the Old Republic and its sequel) and the Electron (Neverwinter Nights 2) are based heavily on Aurora, keeping lots of basic file formats, and only extending other. I don't know anything about Eclipse (Dragon Age) or Jade Empire's engine, though. - eos is meant primarily to get Star Wars: Knights of the Old Republic + xoreos is meant primarily to get Star Wars: Knights of the Old Republic working, since there are already Linux and MacOS ports of Neverwinter Nights. However, my knowledge is grouped around the latter, so what will be implemented first depends on exactly how similar Aurora and Odyssey are. -Q: Will eos be able to play earlier versions of BioWare engine? +Q: Will xoreos be able to play earlier versions of BioWare engine? A: Probably not. The Infinity engine, while also having basic file formats in common, is isometric "2.5D", so using a complete different graphical model. It might be too different to get to integrate. Also, there diff --git a/Makefile.am b/Makefile.am index e385504e40..b54624c460 100644 --- a/Makefile.am +++ b/Makefile.am @@ -13,12 +13,12 @@ doxygen-clean: rm -rf doc/doxygen/man/ dnl TODO: Make a static target for this (would involve changing sdl-config to use static libs, static versions of SDL_sound and SDL_mixer, and creating a framework folder for OpenGL). -BUNDLE_NAME = Eos.app +BUNDLE_NAME = Xoreos.app bundle: all mkdir -p $(BUNDLE_NAME)/Contents/MacOS mkdir -p $(BUNDLE_NAME)/Contents/Resources echo "APPL????" > $(BUNDLE_NAME)/Contents/PkgInfo cp dists/macosx/Info.plist $(BUNDLE_NAME)/Contents/ - cp src/eos $(BUNDLE_NAME)/Contents/MacOS/eos - chmod 755 $(BUNDLE_NAME)/Contents/MacOS/eos - $(STRIP) $(BUNDLE_NAME)/Contents/MacOS/eos + cp src/xoreos $(BUNDLE_NAME)/Contents/MacOS/xoreos + chmod 755 $(BUNDLE_NAME)/Contents/MacOS/xoreos + $(STRIP) $(BUNDLE_NAME)/Contents/MacOS/xoreos diff --git a/Makefile.common b/Makefile.common index c933a5242a..4583662e49 100644 --- a/Makefile.common +++ b/Makefile.common @@ -1,9 +1,9 @@ AUTOMAKE_OPTIONS = subdir-objects -LIBSF_C_CXX = $(EOS_CFLAGS) $(SDL_CFLAGS) $(FT2_CFLAGS) $(GL_CFLAGS) $(AL_CFLAGS) \ +LIBSF_C_CXX = $(XOREOS_CFLAGS) $(SDL_CFLAGS) $(FT2_CFLAGS) $(GL_CFLAGS) $(AL_CFLAGS) \ $(MAD_CFLAGS) $(OGG_CFLAGS) $(VORBIS_CFLAGS) $(XVID_CFLAGS) $(Z_CFLAGS) \ $(FAAD_CFLAGS) -LIBSL_C_CXX = $(EOS_LIBS) $(SDL_LIBS) $(FT2_LIBS) $(GL_LIBS) $(AL_LIBS) \ +LIBSL_C_CXX = $(XOREOS_LIBS) $(SDL_LIBS) $(FT2_LIBS) $(GL_LIBS) $(AL_LIBS) \ $(MAD_LIBS) $(OGG_LIBS) $(VORBIS_LIBS) $(XVID_LIBS) $(Z_LIBS) \ $(FAAD_LIBS) diff --git a/README b/README index 67d2ddcbfc..02ce75ebbf 100644 --- a/README +++ b/README @@ -1,18 +1,18 @@ -eos 0.0.1 -========= +xoreos 0.0.1 +============ -eos will be a reimplementation of BioWare's Aurora engine (and derivatives), +xoreos will be a reimplementation of BioWare's Aurora engine (and derivatives), its direct goal being having Star Wars: Knights of the Old Republic working in a portable manner. Other games might follow. What is currently working, you might ask? Well...visibly, a bit. And quite a lot of the "foundation" work is there. Resource management, basic file -formats, etc.. What you'll see when you sick eos on the installation directory -of a recognized game is, apart from the movies (Bink playback courtesy of the -ffmpeg project), stubby menus for NWN and KotOR, static 3D geometry and/or -music and/or sound, loaded from the actual data files. Not really impressive -yet, I know. :P +formats, etc.. What you'll see when you sick ====os on the installation +directory of a recognized game is, apart from the movies (Bink playback +courtesy of the ffmpeg project), stubby menus for NWN and KotOR, static 3D +geometry and/or music and/or sound, loaded from the actual data files. +Not really impressive yet, I know. :P Will it ever be more? I don't know. This project was started out of a whim, basically. Like with many of my projects, I don't work on it continously, diff --git a/README.dox b/README.dox index e17de9566d..f4222560a2 100644 --- a/README.dox +++ b/README.dox @@ -1,6 +1,6 @@ /** -@mainpage eos +@mainpage xoreos @author Sven Hesse (DrMcCoy) @author Matthew Hoops (clone2727) diff --git a/configure.ac b/configure.ac index a0f5b70179..567f7a0d79 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.65]) -AC_INIT([eos],[0.0.1]) +AC_INIT([xoreos],[0.0.1]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_SRCDIR([config.h.in]) @@ -138,7 +138,7 @@ if test "x$am_cv_func_iconv" != "xyes"; then fi dnl FreeType2 -AC_CHECK_FT2([11.0.5], [], [AC_MSG_ERROR([FreeType2 is required to compile eos])]) +AC_CHECK_FT2([11.0.5], [], [AC_MSG_ERROR([FreeType2 is required to compile xoreos])]) dnl Boost BOOST_REQUIRE @@ -196,12 +196,12 @@ esac; dnl Extra flags case "$target" in *darwin*) - EOS_CFLAGS="-DUNIX -DMACOSX" - EOS_LIBS="" + XOREOS_CFLAGS="-DUNIX -DMACOSX" + XOREOS_LIBS="" ;; *) - EOS_CFLAGS="-DUNIX" - EOS_LIBS="" + XOREOS_CFLAGS="-DUNIX" + XOREOS_LIBS="" ;; esac; @@ -235,8 +235,8 @@ AC_SUBST(XVID_LIBS) AC_SUBST(Z_CFLAGS) AC_SUBST(Z_LIBS) -AC_SUBST(EOS_CFLAGS) -AC_SUBST(EOS_LIBS) +AC_SUBST(XOREOS_CFLAGS) +AC_SUBST(XOREOS_LIBS) AC_SUBST(WERROR) diff --git a/dists/macosx/Info.plist b/dists/macosx/Info.plist index d493dc1c56..adfe565a71 100644 --- a/dists/macosx/Info.plist +++ b/dists/macosx/Info.plist @@ -5,17 +5,17 @@ CFBundleDevelopmentRegion English CFBundleDisplayName - Eos + Xoreos CFBundleExecutable - eos + xoreos CFBundleGetInfoString 0.0.1, Copyright 2010-2011 Sven Hesse (DrMcCoy), Matthew Hoops (clone2727) CFBundleIdentifier - org.eos.eos + org.xoreos.xoreos CFBundleInfoDictionaryVersion 6.0 CFBundleName - Eos + Xoreos CFBundlePackageType APPL CFBundleShortVersionString diff --git a/src/Makefile.am b/src/Makefile.am index ca566c7e52..f89ca3f39c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,9 +4,9 @@ SUBDIRS = common graphics sound video events aurora engines noinst_HEADERS = cline.h -bin_PROGRAMS = eos +bin_PROGRAMS = xoreos -eos_SOURCES = cline.cpp \ - eos.cpp +xoreos_SOURCES = cline.cpp \ + xoreos.cpp -eos_LDADD = engines/libengines.la events/libevents.la video/libvideo.la sound/libsound.la graphics/libgraphics.la aurora/libaurora.la common/libcommon.la ../lua/liblua.la +xoreos_LDADD = engines/libengines.la events/libevents.la video/libvideo.la sound/libsound.la graphics/libgraphics.la aurora/libaurora.la common/libcommon.la ../lua/liblua.la diff --git a/src/aurora/2dafile.cpp b/src/aurora/2dafile.cpp index ca09b66328..95a3126056 100644 --- a/src/aurora/2dafile.cpp +++ b/src/aurora/2dafile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/2dafile.h b/src/aurora/2dafile.h index 0a36f0b063..45bb754962 100644 --- a/src/aurora/2dafile.h +++ b/src/aurora/2dafile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/2dareg.cpp b/src/aurora/2dareg.cpp index 66f4cae60d..4e24230569 100644 --- a/src/aurora/2dareg.cpp +++ b/src/aurora/2dareg.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/2dareg.h b/src/aurora/2dareg.h index 70b2a5c6f0..1bef198019 100644 --- a/src/aurora/2dareg.h +++ b/src/aurora/2dareg.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/archive.cpp b/src/aurora/archive.cpp index 9adb4ff42d..ec3593f3c4 100644 --- a/src/aurora/archive.cpp +++ b/src/aurora/archive.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/archive.h b/src/aurora/archive.h index 9b2ea10904..a7d2524a5e 100644 --- a/src/aurora/archive.h +++ b/src/aurora/archive.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/aurorafile.cpp b/src/aurora/aurorafile.cpp index 969ebbc61a..fd364fa054 100644 --- a/src/aurora/aurorafile.cpp +++ b/src/aurora/aurorafile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/aurorafile.h b/src/aurora/aurorafile.h index 219d43bf68..902b54c6ff 100644 --- a/src/aurora/aurorafile.h +++ b/src/aurora/aurorafile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/biffile.cpp b/src/aurora/biffile.cpp index bad0bc91d6..ed8542329f 100644 --- a/src/aurora/biffile.cpp +++ b/src/aurora/biffile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/biffile.h b/src/aurora/biffile.h index f4e14d36d1..a4e69925f7 100644 --- a/src/aurora/biffile.h +++ b/src/aurora/biffile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/dlgfile.cpp b/src/aurora/dlgfile.cpp index 955132e047..65f0fc9562 100644 --- a/src/aurora/dlgfile.cpp +++ b/src/aurora/dlgfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/dlgfile.h b/src/aurora/dlgfile.h index bcc838ccf8..429a9f5dc5 100644 --- a/src/aurora/dlgfile.h +++ b/src/aurora/dlgfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/erffile.cpp b/src/aurora/erffile.cpp index ff42f3a5db..dc643b1aae 100644 --- a/src/aurora/erffile.cpp +++ b/src/aurora/erffile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/erffile.h b/src/aurora/erffile.h index 1d8535d5a4..aa4f83474c 100644 --- a/src/aurora/erffile.h +++ b/src/aurora/erffile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/error.cpp b/src/aurora/error.cpp index 865fba13a2..fc301ed456 100644 --- a/src/aurora/error.cpp +++ b/src/aurora/error.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/error.h b/src/aurora/error.h index fbe4c8571b..9b94a3e79f 100644 --- a/src/aurora/error.h +++ b/src/aurora/error.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/gfffile.cpp b/src/aurora/gfffile.cpp index 53fa0431a8..a6e163f5a9 100644 --- a/src/aurora/gfffile.cpp +++ b/src/aurora/gfffile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/gfffile.h b/src/aurora/gfffile.h index 361c4f5f0a..cc6ab5729c 100644 --- a/src/aurora/gfffile.h +++ b/src/aurora/gfffile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/gffstructs.cpp b/src/aurora/gffstructs.cpp index 6b44cc5120..a623c14d9e 100644 --- a/src/aurora/gffstructs.cpp +++ b/src/aurora/gffstructs.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/gffstructs.h b/src/aurora/gffstructs.h index e9f10c452c..671b3a2450 100644 --- a/src/aurora/gffstructs.h +++ b/src/aurora/gffstructs.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/herffile.cpp b/src/aurora/herffile.cpp index 322ea5bb28..0f6e57fe62 100644 --- a/src/aurora/herffile.cpp +++ b/src/aurora/herffile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/herffile.h b/src/aurora/herffile.h index 5124b8aa71..77e512e583 100644 --- a/src/aurora/herffile.h +++ b/src/aurora/herffile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/keyfile.cpp b/src/aurora/keyfile.cpp index 749d3987e6..864665855c 100644 --- a/src/aurora/keyfile.cpp +++ b/src/aurora/keyfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/keyfile.h b/src/aurora/keyfile.h index 4a52096ebe..92c954e7c8 100644 --- a/src/aurora/keyfile.h +++ b/src/aurora/keyfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/locstring.cpp b/src/aurora/locstring.cpp index a7b8d4937a..9e219e54ea 100644 --- a/src/aurora/locstring.cpp +++ b/src/aurora/locstring.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/locstring.h b/src/aurora/locstring.h index 825621cf4d..c0f16db339 100644 --- a/src/aurora/locstring.h +++ b/src/aurora/locstring.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/lytfile.cpp b/src/aurora/lytfile.cpp index e62682c8a4..55370f944d 100644 --- a/src/aurora/lytfile.cpp +++ b/src/aurora/lytfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/lytfile.h b/src/aurora/lytfile.h index 0b48f2d76f..45dd384107 100644 --- a/src/aurora/lytfile.h +++ b/src/aurora/lytfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/ndsrom.cpp b/src/aurora/ndsrom.cpp index 26e323310d..d7e8879590 100644 --- a/src/aurora/ndsrom.cpp +++ b/src/aurora/ndsrom.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/ndsrom.h b/src/aurora/ndsrom.h index 14a49e88ea..1b4ffc961d 100644 --- a/src/aurora/ndsrom.h +++ b/src/aurora/ndsrom.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/enginetype.h b/src/aurora/nwscript/enginetype.h index 3c96fb7512..ce05ae4611 100644 --- a/src/aurora/nwscript/enginetype.h +++ b/src/aurora/nwscript/enginetype.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/functioncontext.cpp b/src/aurora/nwscript/functioncontext.cpp index 843d778dfd..25515e0ee3 100644 --- a/src/aurora/nwscript/functioncontext.cpp +++ b/src/aurora/nwscript/functioncontext.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/functioncontext.h b/src/aurora/nwscript/functioncontext.h index 702940c4ed..e465ac5afe 100644 --- a/src/aurora/nwscript/functioncontext.h +++ b/src/aurora/nwscript/functioncontext.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/functionman.cpp b/src/aurora/nwscript/functionman.cpp index 1cfac80e60..2920e384c9 100644 --- a/src/aurora/nwscript/functionman.cpp +++ b/src/aurora/nwscript/functionman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/functionman.h b/src/aurora/nwscript/functionman.h index 37efcc89bc..82a552c079 100644 --- a/src/aurora/nwscript/functionman.h +++ b/src/aurora/nwscript/functionman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/ncsfile.cpp b/src/aurora/nwscript/ncsfile.cpp index ca8e301d63..9c2de2f55f 100644 --- a/src/aurora/nwscript/ncsfile.cpp +++ b/src/aurora/nwscript/ncsfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/ncsfile.h b/src/aurora/nwscript/ncsfile.h index aa0cac7ec6..4191adea0c 100644 --- a/src/aurora/nwscript/ncsfile.h +++ b/src/aurora/nwscript/ncsfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/object.cpp b/src/aurora/nwscript/object.cpp index 14f8efd4fb..3e18b479f7 100644 --- a/src/aurora/nwscript/object.cpp +++ b/src/aurora/nwscript/object.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/object.h b/src/aurora/nwscript/object.h index 47a738cfbf..59174d8076 100644 --- a/src/aurora/nwscript/object.h +++ b/src/aurora/nwscript/object.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/objectcontainer.cpp b/src/aurora/nwscript/objectcontainer.cpp index 517eda4611..380cf5d655 100644 --- a/src/aurora/nwscript/objectcontainer.cpp +++ b/src/aurora/nwscript/objectcontainer.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/objectcontainer.h b/src/aurora/nwscript/objectcontainer.h index d5c021ba15..ae9efd7205 100644 --- a/src/aurora/nwscript/objectcontainer.h +++ b/src/aurora/nwscript/objectcontainer.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/types.h b/src/aurora/nwscript/types.h index 1c33caf3ae..3c324f7a7c 100644 --- a/src/aurora/nwscript/types.h +++ b/src/aurora/nwscript/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/util.cpp b/src/aurora/nwscript/util.cpp index f36a17f3c6..025782f45e 100644 --- a/src/aurora/nwscript/util.cpp +++ b/src/aurora/nwscript/util.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/util.h b/src/aurora/nwscript/util.h index c8e068af36..a00993b1d8 100644 --- a/src/aurora/nwscript/util.h +++ b/src/aurora/nwscript/util.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/variable.cpp b/src/aurora/nwscript/variable.cpp index 2935f274e4..eb3c665a5f 100644 --- a/src/aurora/nwscript/variable.cpp +++ b/src/aurora/nwscript/variable.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/variable.h b/src/aurora/nwscript/variable.h index a35294d0e4..95ac3beb66 100644 --- a/src/aurora/nwscript/variable.h +++ b/src/aurora/nwscript/variable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/variablecontainer.cpp b/src/aurora/nwscript/variablecontainer.cpp index a834d0fa45..1eb9219fe0 100644 --- a/src/aurora/nwscript/variablecontainer.cpp +++ b/src/aurora/nwscript/variablecontainer.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/nwscript/variablecontainer.h b/src/aurora/nwscript/variablecontainer.h index f9ec94cc4c..f0d3295285 100644 --- a/src/aurora/nwscript/variablecontainer.h +++ b/src/aurora/nwscript/variablecontainer.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/pefile.cpp b/src/aurora/pefile.cpp index 83bccc3ac1..2eec8d73f4 100644 --- a/src/aurora/pefile.cpp +++ b/src/aurora/pefile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/pefile.h b/src/aurora/pefile.h index a6f978153c..d1fe6bd1a8 100644 --- a/src/aurora/pefile.h +++ b/src/aurora/pefile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/resman.cpp b/src/aurora/resman.cpp index e34867639c..1376a4f8b2 100644 --- a/src/aurora/resman.cpp +++ b/src/aurora/resman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/resman.h b/src/aurora/resman.h index c27b01f2cf..1f65a64f99 100644 --- a/src/aurora/resman.h +++ b/src/aurora/resman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/rimfile.cpp b/src/aurora/rimfile.cpp index 069b9e99c3..51dc02791f 100644 --- a/src/aurora/rimfile.cpp +++ b/src/aurora/rimfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/rimfile.h b/src/aurora/rimfile.h index 53fb984bc6..0868f37cc0 100644 --- a/src/aurora/rimfile.h +++ b/src/aurora/rimfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/ssffile.cpp b/src/aurora/ssffile.cpp index a5f99bca2f..050a9e95d7 100644 --- a/src/aurora/ssffile.cpp +++ b/src/aurora/ssffile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/ssffile.h b/src/aurora/ssffile.h index 8b0dad8333..bff776b8b6 100644 --- a/src/aurora/ssffile.h +++ b/src/aurora/ssffile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/talkman.cpp b/src/aurora/talkman.cpp index 9be3ebfc61..08c92d3cc3 100644 --- a/src/aurora/talkman.cpp +++ b/src/aurora/talkman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/talkman.h b/src/aurora/talkman.h index 5b937d477a..3ab961ec67 100644 --- a/src/aurora/talkman.h +++ b/src/aurora/talkman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/talktable.cpp b/src/aurora/talktable.cpp index 2fe8ac0de7..203ccff4cc 100644 --- a/src/aurora/talktable.cpp +++ b/src/aurora/talktable.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/talktable.h b/src/aurora/talktable.h index cb522b3abc..042ea41f36 100644 --- a/src/aurora/talktable.h +++ b/src/aurora/talktable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/types.h b/src/aurora/types.h index 5ae93bc9ac..fd30c09857 100644 --- a/src/aurora/types.h +++ b/src/aurora/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/util.cpp b/src/aurora/util.cpp index 2e5c7da9d4..3a1651637d 100644 --- a/src/aurora/util.cpp +++ b/src/aurora/util.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/util.h b/src/aurora/util.h index a5af7a4526..a099145b28 100644 --- a/src/aurora/util.h +++ b/src/aurora/util.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/visfile.cpp b/src/aurora/visfile.cpp index d4d8ee81a2..2c071ffbb0 100644 --- a/src/aurora/visfile.cpp +++ b/src/aurora/visfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/visfile.h b/src/aurora/visfile.h index c1b237c5be..e64030758b 100644 --- a/src/aurora/visfile.h +++ b/src/aurora/visfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/zipfile.cpp b/src/aurora/zipfile.cpp index 76898cb906..7e20c6d827 100644 --- a/src/aurora/zipfile.cpp +++ b/src/aurora/zipfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/aurora/zipfile.h b/src/aurora/zipfile.h index 079f5ba571..46897ca04d 100644 --- a/src/aurora/zipfile.h +++ b/src/aurora/zipfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/cline.cpp b/src/cline.cpp index a185ea8df8..d954d750d2 100644 --- a/src/cline.cpp +++ b/src/cline.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/cline.h b/src/cline.h index 2cb9603950..f05dca68ec 100644 --- a/src/cline.h +++ b/src/cline.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/bitstream.h b/src/common/bitstream.h index 71fe78ad45..be1802558c 100644 --- a/src/common/bitstream.h +++ b/src/common/bitstream.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/boundingbox.cpp b/src/common/boundingbox.cpp index 18a4e017ce..109f3815d1 100644 --- a/src/common/boundingbox.cpp +++ b/src/common/boundingbox.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/boundingbox.h b/src/common/boundingbox.h index cd20ff8b7d..5ecca3bc12 100644 --- a/src/common/boundingbox.h +++ b/src/common/boundingbox.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/configfile.cpp b/src/common/configfile.cpp index 9df95ca820..7b0cd95a41 100644 --- a/src/common/configfile.cpp +++ b/src/common/configfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/configfile.h b/src/common/configfile.h index 5e0c42ad31..302b5786ed 100644 --- a/src/common/configfile.h +++ b/src/common/configfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/configman.cpp b/src/common/configman.cpp index 04746a02fe..bd5df00329 100644 --- a/src/common/configman.cpp +++ b/src/common/configman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -38,20 +38,20 @@ #define WIN32_LEAN_AND_MEAN #include - #define DEFAULT_CONFIG_FILE "eos.ini" + #define DEFAULT_CONFIG_FILE "xoreos.ini" #elif defined(MACOSX) - #define DEFAULT_CONFIG_FILE "Library/Preferences/eos Preferences" + #define DEFAULT_CONFIG_FILE "Library/Preferences/xoreos Preferences" #elif defined(UNIX) - #define DEFAULT_CONFIG_FILE ".eosrc" + #define DEFAULT_CONFIG_FILE ".xoreosrc" #else - #define DEFAULT_CONFIG_FILE ".eosrc" + #define DEFAULT_CONFIG_FILE ".xoreosrc" #endif DECLARE_SINGLETON(Common::ConfigManager) namespace Common { -const char *ConfigManager::kDomainApp = "eos"; +const char *ConfigManager::kDomainApp = "xoreos"; ConfigManager::ConfigManager() : _changed(false), _config(0), _domainApp(0), _domainGame(0) { _domainDefaultApp = new ConfigDomain("appDefault"); @@ -440,7 +440,7 @@ UString ConfigManager::getDefaultConfigFile() { CreateDirectory(configFile, 0); } - strcat(configFile, "\\eos"); + strcat(configFile, "\\xoreos"); CreateDirectory(configFile, 0); strcat(configFile, "\\" DEFAULT_CONFIG_FILE); diff --git a/src/common/configman.h b/src/common/configman.h index 251a6e492d..e079537968 100644 --- a/src/common/configman.h +++ b/src/common/configman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/cosinetables.cpp b/src/common/cosinetables.cpp index b55c3a6293..e66ad963e0 100644 --- a/src/common/cosinetables.cpp +++ b/src/common/cosinetables.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/cosinetables.h b/src/common/cosinetables.h index 0f2a1eb011..6f5785ab98 100644 --- a/src/common/cosinetables.h +++ b/src/common/cosinetables.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/dct.cpp b/src/common/dct.cpp index be83e15dc3..93fb147b3f 100644 --- a/src/common/dct.cpp +++ b/src/common/dct.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/dct.h b/src/common/dct.h index bda8e7ebd9..2684a4648c 100644 --- a/src/common/dct.h +++ b/src/common/dct.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/debug.cpp b/src/common/debug.cpp index d23f682bf0..252456904d 100644 --- a/src/common/debug.cpp +++ b/src/common/debug.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/debug.h b/src/common/debug.h index ba2ac176c5..62fa153e63 100644 --- a/src/common/debug.h +++ b/src/common/debug.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/debugman.cpp b/src/common/debugman.cpp index 82b045c7a7..aeff62fe03 100644 --- a/src/common/debugman.cpp +++ b/src/common/debugman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/debugman.h b/src/common/debugman.h index 33dfa48e0a..58184995a5 100644 --- a/src/common/debugman.h +++ b/src/common/debugman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/endianness.h b/src/common/endianness.h index 2245c64b3e..416f421aad 100644 --- a/src/common/endianness.h +++ b/src/common/endianness.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -36,7 +36,7 @@ #include "common/types.h" // Sanity check -#if !defined(EOS_LITTLE_ENDIAN) && !defined(EOS_BIG_ENDIAN) +#if !defined(XOREOS_LITTLE_ENDIAN) && !defined(XOREOS_BIG_ENDIAN) #error No endianness defined #endif @@ -135,7 +135,7 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { // Functions for reading/writing native Integers, // this transparently handles the need for alignment -#if !defined(EOS_NEED_ALIGNMENT) +#if !defined(XOREOS_NEED_ALIGNMENT) FORCEINLINE uint16 READ_UINT16(const void *ptr) { return *(const uint16 *)(ptr); @@ -198,7 +198,7 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { // use software fallback by loading each byte explicitely #else - #if defined(EOS_LITTLE_ENDIAN) + #if defined(XOREOS_LITTLE_ENDIAN) static inline uint16 READ_UINT16(const void *ptr) { const uint8 *b = (const uint8 *)ptr; @@ -237,7 +237,7 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { b[7] = (uint8)(value >> 56); } - #elif defined(EOS_BIG_ENDIAN) + #elif defined(XOREOS_BIG_ENDIAN) static inline uint16 READ_UINT16(const void *ptr) { const uint8 *b = (const uint8 *)ptr; @@ -281,7 +281,7 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { #endif // Map Funtions for reading/writing BE/LE integers depending on native endianess -#if defined(EOS_LITTLE_ENDIAN) +#if defined(XOREOS_LITTLE_ENDIAN) #define READ_LE_UINT16(a) READ_UINT16(a) #define READ_LE_UINT32(a) READ_UINT32(a) @@ -316,7 +316,7 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { #define CONSTANT_BE_64(a) SWAP_CONSTANT_64(a) // if the unaligned load and the byteswap take alot instructions its better to directly read and invert - #if defined(EOS_NEED_ALIGNMENT) && !defined(__mips__) + #if defined(XOREOS_NEED_ALIGNMENT) && !defined(__mips__) static inline uint16 READ_BE_UINT16(const void *ptr) { const uint8 *b = (const uint8 *)ptr; @@ -376,9 +376,9 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { WRITE_UINT64(ptr, SWAP_BYTES_64(value)); } - #endif // if defined(EOS_NEED_ALIGNMENT) + #endif // if defined(XOREOS_NEED_ALIGNMENT) -#elif defined(EOS_BIG_ENDIAN) +#elif defined(XOREOS_BIG_ENDIAN) #define MKID_BE(a) ((uint32)(a)) @@ -415,7 +415,7 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { #define CONSTANT_BE_64(a) ((uint64)(a)) // if the unaligned load and the byteswap take alot instructions its better to directly read and invert - #if defined(EOS_NEED_ALIGNMENT) && !defined(__mips__) + #if defined(XOREOS_NEED_ALIGNMENT) && !defined(__mips__) static inline uint16 READ_LE_UINT16(const void *ptr) { const uint8 *b = (const uint8 *)ptr; @@ -475,8 +475,8 @@ static inline uint16 SWAP_BYTES_16(const uint16 a) { WRITE_UINT64(ptr, SWAP_BYTES_64(value)); } - #endif // if defined(EOS_NEED_ALIGNMENT) + #endif // if defined(XOREOS_NEED_ALIGNMENT) -#endif // if defined(EOS_LITTLE_ENDIAN) +#endif // if defined(XOREOS_LITTLE_ENDIAN) #endif // COMMON_ENDIAN_H diff --git a/src/common/error.cpp b/src/common/error.cpp index 87799618f4..40dcc298e4 100644 --- a/src/common/error.cpp +++ b/src/common/error.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/error.h b/src/common/error.h index 2d36f29c16..ebec029f93 100644 --- a/src/common/error.h +++ b/src/common/error.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/fft.cpp b/src/common/fft.cpp index 5e9c22190e..10eda40d6f 100644 --- a/src/common/fft.cpp +++ b/src/common/fft.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/fft.h b/src/common/fft.h index 4f14cd717b..0c6ce0f404 100644 --- a/src/common/fft.h +++ b/src/common/fft.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/file.cpp b/src/common/file.cpp index d4a7dac627..c1883f4ca0 100644 --- a/src/common/file.cpp +++ b/src/common/file.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/file.h b/src/common/file.h index 95ecd6fe9e..bd5d1dfcaf 100644 --- a/src/common/file.h +++ b/src/common/file.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/filelist.cpp b/src/common/filelist.cpp index 1b976a9fdd..99855f94f9 100644 --- a/src/common/filelist.cpp +++ b/src/common/filelist.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/filelist.h b/src/common/filelist.h index 7f040cbde6..0b2cbce25b 100644 --- a/src/common/filelist.h +++ b/src/common/filelist.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/filepath.cpp b/src/common/filepath.cpp index fae6403bc7..5cdcc307bc 100644 --- a/src/common/filepath.cpp +++ b/src/common/filepath.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/filepath.h b/src/common/filepath.h index c3f1e2ef41..af89ae067b 100644 --- a/src/common/filepath.h +++ b/src/common/filepath.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/foxpro.cpp b/src/common/foxpro.cpp index 514509405e..d23309d9bb 100644 --- a/src/common/foxpro.cpp +++ b/src/common/foxpro.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/foxpro.h b/src/common/foxpro.h index 2df7d17ffd..e0f7990975 100644 --- a/src/common/foxpro.h +++ b/src/common/foxpro.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/huffman.cpp b/src/common/huffman.cpp index 668560d626..85510ea742 100644 --- a/src/common/huffman.cpp +++ b/src/common/huffman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/huffman.h b/src/common/huffman.h index a1080220b7..24c99e0c76 100644 --- a/src/common/huffman.h +++ b/src/common/huffman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/maths.cpp b/src/common/maths.cpp index 30f706894a..73568a8d06 100644 --- a/src/common/maths.cpp +++ b/src/common/maths.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/maths.h b/src/common/maths.h index 25fbfe62b0..c3e26a82a3 100644 --- a/src/common/maths.h +++ b/src/common/maths.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/matrix.cpp b/src/common/matrix.cpp index 64eba71df0..3a5c86e75b 100644 --- a/src/common/matrix.cpp +++ b/src/common/matrix.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/matrix.h b/src/common/matrix.h index a00c7590c9..d27881d559 100644 --- a/src/common/matrix.h +++ b/src/common/matrix.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/mdct.cpp b/src/common/mdct.cpp index 62e942fcdc..fb832eb327 100644 --- a/src/common/mdct.cpp +++ b/src/common/mdct.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/mdct.h b/src/common/mdct.h index 3a46f725ed..9875e4ec6d 100644 --- a/src/common/mdct.h +++ b/src/common/mdct.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/mutex.cpp b/src/common/mutex.cpp index 1af910695a..be54fd038c 100644 --- a/src/common/mutex.cpp +++ b/src/common/mutex.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/mutex.h b/src/common/mutex.h index f1aeeb8354..e9c839f114 100644 --- a/src/common/mutex.h +++ b/src/common/mutex.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/noncopyable.h b/src/common/noncopyable.h index 6e2c346124..b37ed11cdd 100644 --- a/src/common/noncopyable.h +++ b/src/common/noncopyable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/pe_exe.cpp b/src/common/pe_exe.cpp index fb901bc651..4353f67147 100644 --- a/src/common/pe_exe.cpp +++ b/src/common/pe_exe.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/pe_exe.h b/src/common/pe_exe.h index c12dd78114..fcf67fdcdb 100644 --- a/src/common/pe_exe.h +++ b/src/common/pe_exe.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/rdft.cpp b/src/common/rdft.cpp index 72292e2571..db1382c3ea 100644 --- a/src/common/rdft.cpp +++ b/src/common/rdft.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/rdft.h b/src/common/rdft.h index a33760d15a..3ab9202809 100644 --- a/src/common/rdft.h +++ b/src/common/rdft.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/readline.cpp b/src/common/readline.cpp index 2c97758eb5..b6ff3daa5e 100644 --- a/src/common/readline.cpp +++ b/src/common/readline.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/readline.h b/src/common/readline.h index 6722fe3905..d5a4f50c54 100644 --- a/src/common/readline.h +++ b/src/common/readline.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/sinetables.cpp b/src/common/sinetables.cpp index 22d923c40c..c84dbabe17 100644 --- a/src/common/sinetables.cpp +++ b/src/common/sinetables.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/sinetables.h b/src/common/sinetables.h index 996f767e5d..dd582cbb07 100644 --- a/src/common/sinetables.h +++ b/src/common/sinetables.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/sinewindows.cpp b/src/common/sinewindows.cpp index 4f4e91037b..3c06f6165a 100644 --- a/src/common/sinewindows.cpp +++ b/src/common/sinewindows.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/sinewindows.h b/src/common/sinewindows.h index c977f31bf8..76df697f53 100644 --- a/src/common/sinewindows.h +++ b/src/common/sinewindows.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/singleton.h b/src/common/singleton.h index 7aa03c081a..919165282f 100644 --- a/src/common/singleton.h +++ b/src/common/singleton.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/stream.cpp b/src/common/stream.cpp index b2e827e11a..5bb8d707b2 100644 --- a/src/common/stream.cpp +++ b/src/common/stream.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/stream.h b/src/common/stream.h index 6fa4b2625f..7b06412dfd 100644 --- a/src/common/stream.h +++ b/src/common/stream.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/streamtokenizer.cpp b/src/common/streamtokenizer.cpp index 6c4338a0b7..55436e0167 100644 --- a/src/common/streamtokenizer.cpp +++ b/src/common/streamtokenizer.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/streamtokenizer.h b/src/common/streamtokenizer.h index 7907e29ee5..69057f12ab 100644 --- a/src/common/streamtokenizer.h +++ b/src/common/streamtokenizer.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/stringmap.cpp b/src/common/stringmap.cpp index 739a5736f7..4bcf243699 100644 --- a/src/common/stringmap.cpp +++ b/src/common/stringmap.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/stringmap.h b/src/common/stringmap.h index e378b47177..4efffdebe8 100644 --- a/src/common/stringmap.h +++ b/src/common/stringmap.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/strutil.cpp b/src/common/strutil.cpp index 0fb54d0237..5d057cbf5d 100644 --- a/src/common/strutil.cpp +++ b/src/common/strutil.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/strutil.h b/src/common/strutil.h index 1ae130754a..242c616b6b 100644 --- a/src/common/strutil.h +++ b/src/common/strutil.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/system.h b/src/common/system.h index 46d4ba6e61..5f0d8acf00 100644 --- a/src/common/system.h +++ b/src/common/system.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -40,7 +40,7 @@ #define snprintf _snprintf - #define EOS_LITTLE_ENDIAN + #define XOREOS_LITTLE_ENDIAN #define FORCEINLINE __forceinline #define NORETURN_PRE __declspec(noreturn) @@ -52,7 +52,7 @@ #elif defined(__MINGW32__) - #define EOS_LITTLE_ENDIAN + #define XOREOS_LITTLE_ENDIAN #define PLUGIN_EXPORT __declspec(dllexport) @@ -64,9 +64,9 @@ #if defined(HAVE_CONFIG_H) #if defined(WORDS_BIGENDIAN) - #define EOS_BIG_ENDIAN + #define XOREOS_BIG_ENDIAN #else - #define EOS_LITTLE_ENDIAN + #define XOREOS_LITTLE_ENDIAN #endif #endif diff --git a/src/common/systemfonts.cpp b/src/common/systemfonts.cpp index 310dec33a4..69572b7472 100644 --- a/src/common/systemfonts.cpp +++ b/src/common/systemfonts.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/systemfonts.h b/src/common/systemfonts.h index 7e2381a175..45f4175c91 100644 --- a/src/common/systemfonts.h +++ b/src/common/systemfonts.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/thread.cpp b/src/common/thread.cpp index 732c2b5acd..bb8465785e 100644 --- a/src/common/thread.cpp +++ b/src/common/thread.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/thread.h b/src/common/thread.h index 011dec22e8..a9e1cb9793 100644 --- a/src/common/thread.h +++ b/src/common/thread.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/threads.cpp b/src/common/threads.cpp index 6f91f17b5c..616c9aaf7f 100644 --- a/src/common/threads.cpp +++ b/src/common/threads.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/threads.h b/src/common/threads.h index 6753a4b400..4dd9fe6009 100644 --- a/src/common/threads.h +++ b/src/common/threads.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/transmatrix.cpp b/src/common/transmatrix.cpp index ad0169ce33..b6a3f69766 100644 --- a/src/common/transmatrix.cpp +++ b/src/common/transmatrix.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/transmatrix.h b/src/common/transmatrix.h index 9b11364531..b936c5a866 100644 --- a/src/common/transmatrix.h +++ b/src/common/transmatrix.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/types.h b/src/common/types.h index 7dc077f73f..867fd49175 100644 --- a/src/common/types.h +++ b/src/common/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/ustring.cpp b/src/common/ustring.cpp index cebacbf117..84561768f9 100644 --- a/src/common/ustring.cpp +++ b/src/common/ustring.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/ustring.h b/src/common/ustring.h index ab914097fd..39c006ee89 100644 --- a/src/common/ustring.h +++ b/src/common/ustring.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/util.cpp b/src/common/util.cpp index 158aa66699..5ddc87e334 100644 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/util.h b/src/common/util.h index abda5dd837..725ff24ee5 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/uuid.cpp b/src/common/uuid.cpp index bf0683707a..e15043b7ad 100644 --- a/src/common/uuid.cpp +++ b/src/common/uuid.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/uuid.h b/src/common/uuid.h index 316fc42076..db46bb2a5c 100644 --- a/src/common/uuid.h +++ b/src/common/uuid.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/zipfile.cpp b/src/common/zipfile.cpp index 43da01285f..27632e5d36 100644 --- a/src/common/zipfile.cpp +++ b/src/common/zipfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/common/zipfile.h b/src/common/zipfile.h index 33038148b8..74b26bdfe0 100644 --- a/src/common/zipfile.h +++ b/src/common/zipfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/console.cpp b/src/engines/aurora/console.cpp index 9e49afa704..4a13b8c11f 100644 --- a/src/engines/aurora/console.cpp +++ b/src/engines/aurora/console.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -664,8 +664,8 @@ Console::Console(const Common::UString &font, int fontHeight) : _neverShown(true "Usage: clear\nClear the console window"); registerCommand("exit" , boost::bind(&Console::cmdExit , this, _1), "Usage: exit\nLeave the console window, returning to the game"); - registerCommand("quiteos" , boost::bind(&Console::cmdQuit , this, _1), - "Usage: quiteos\nShut down eos"); + registerCommand("quitxoreos" , boost::bind(&Console::cmdQuit , this, _1), + "Usage: quitxoreos\nShut down xoreos"); registerCommand("dumpreslist", boost::bind(&Console::cmdDumpResList, this, _1), "Usage: dumpreslist \nDump the current list of resources to file"); registerCommand("dumpres" , boost::bind(&Console::cmdDumpRes , this, _1), diff --git a/src/engines/aurora/console.h b/src/engines/aurora/console.h index 95a972e15b..d0f9980703 100644 --- a/src/engines/aurora/console.h +++ b/src/engines/aurora/console.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/gui.cpp b/src/engines/aurora/gui.cpp index 50d8b8d8e4..8624ee8566 100644 --- a/src/engines/aurora/gui.cpp +++ b/src/engines/aurora/gui.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/gui.h b/src/engines/aurora/gui.h index ffee73d92d..6ebfb8ec91 100644 --- a/src/engines/aurora/gui.h +++ b/src/engines/aurora/gui.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/model.cpp b/src/engines/aurora/model.cpp index 2501e2c927..5dff2ed947 100644 --- a/src/engines/aurora/model.cpp +++ b/src/engines/aurora/model.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/model.h b/src/engines/aurora/model.h index c62a2f91fb..b3869ee2b1 100644 --- a/src/engines/aurora/model.h +++ b/src/engines/aurora/model.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/modelloader.cpp b/src/engines/aurora/modelloader.cpp index d83ced1fa7..aee370dd15 100644 --- a/src/engines/aurora/modelloader.cpp +++ b/src/engines/aurora/modelloader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/modelloader.h b/src/engines/aurora/modelloader.h index b2ba2c0ae6..064c6be4ac 100644 --- a/src/engines/aurora/modelloader.h +++ b/src/engines/aurora/modelloader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/resources.cpp b/src/engines/aurora/resources.cpp index 9bce63ebb4..753e57427a 100644 --- a/src/engines/aurora/resources.cpp +++ b/src/engines/aurora/resources.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/resources.h b/src/engines/aurora/resources.h index 1db17b7c4e..eabec2d59a 100644 --- a/src/engines/aurora/resources.h +++ b/src/engines/aurora/resources.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/tokenman.cpp b/src/engines/aurora/tokenman.cpp index a5ef503ef6..e1e98d7ead 100644 --- a/src/engines/aurora/tokenman.cpp +++ b/src/engines/aurora/tokenman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/tokenman.h b/src/engines/aurora/tokenman.h index 95d9c7bec4..4e5e1d9f89 100644 --- a/src/engines/aurora/tokenman.h +++ b/src/engines/aurora/tokenman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/util.cpp b/src/engines/aurora/util.cpp index a07063b756..62229b88fc 100644 --- a/src/engines/aurora/util.cpp +++ b/src/engines/aurora/util.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/util.h b/src/engines/aurora/util.h index 63ce65f8ad..7e70861158 100644 --- a/src/engines/aurora/util.h +++ b/src/engines/aurora/util.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/widget.cpp b/src/engines/aurora/widget.cpp index 34c429af2c..e0fe918137 100644 --- a/src/engines/aurora/widget.cpp +++ b/src/engines/aurora/widget.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/aurora/widget.h b/src/engines/aurora/widget.h index 76de0e5a9e..10d0d3287a 100644 --- a/src/engines/aurora/widget.h +++ b/src/engines/aurora/widget.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/dragonage/dragonage.cpp b/src/engines/dragonage/dragonage.cpp index d11980f962..0bed63efb7 100644 --- a/src/engines/dragonage/dragonage.cpp +++ b/src/engines/dragonage/dragonage.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/dragonage/dragonage.h b/src/engines/dragonage/dragonage.h index 7fe931aec2..fd62f568ea 100644 --- a/src/engines/dragonage/dragonage.h +++ b/src/engines/dragonage/dragonage.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/engine.cpp b/src/engines/engine.cpp index 696dad9f2b..3614e92518 100644 --- a/src/engines/engine.cpp +++ b/src/engines/engine.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/engine.h b/src/engines/engine.h index bfa46e6da0..f8390aac5c 100644 --- a/src/engines/engine.h +++ b/src/engines/engine.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/enginemanager.cpp b/src/engines/enginemanager.cpp index 9569f05c94..8275fd9808 100644 --- a/src/engines/enginemanager.cpp +++ b/src/engines/enginemanager.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/enginemanager.h b/src/engines/enginemanager.h index 6b9bf6e38f..14b9d2e715 100644 --- a/src/engines/enginemanager.h +++ b/src/engines/enginemanager.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/engineprobe.h b/src/engines/engineprobe.h index 7c0c14d790..ebcad0a444 100644 --- a/src/engines/engineprobe.h +++ b/src/engines/engineprobe.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/gamethread.cpp b/src/engines/gamethread.cpp index f86733e341..fe39027875 100644 --- a/src/engines/gamethread.cpp +++ b/src/engines/gamethread.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/gamethread.h b/src/engines/gamethread.h index 4b267b5dca..f14e8ff27e 100644 --- a/src/engines/gamethread.h +++ b/src/engines/gamethread.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/jade/gui/main/main.cpp b/src/engines/jade/gui/main/main.cpp index a8d5617ed7..a22f53f1e8 100644 --- a/src/engines/jade/gui/main/main.cpp +++ b/src/engines/jade/gui/main/main.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/jade/gui/main/main.h b/src/engines/jade/gui/main/main.h index 389c99d21c..905c7ec3b1 100644 --- a/src/engines/jade/gui/main/main.h +++ b/src/engines/jade/gui/main/main.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/jade/jade.cpp b/src/engines/jade/jade.cpp index 410ac5e024..aed67b602b 100644 --- a/src/engines/jade/jade.cpp +++ b/src/engines/jade/jade.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/jade/jade.h b/src/engines/jade/jade.h index a8092df754..7461d6556a 100644 --- a/src/engines/jade/jade.h +++ b/src/engines/jade/jade.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/area.cpp b/src/engines/kotor/area.cpp index 57015005f6..494c431fd1 100644 --- a/src/engines/kotor/area.cpp +++ b/src/engines/kotor/area.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/area.h b/src/engines/kotor/area.h index 64aaf0e0c5..3f96ea0ccb 100644 --- a/src/engines/kotor/area.h +++ b/src/engines/kotor/area.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/console.cpp b/src/engines/kotor/console.cpp index a9d1de99e8..aeccce07c9 100644 --- a/src/engines/kotor/console.cpp +++ b/src/engines/kotor/console.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/console.h b/src/engines/kotor/console.h index c4ce2045af..dc0789b645 100644 --- a/src/engines/kotor/console.h +++ b/src/engines/kotor/console.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/creature.cpp b/src/engines/kotor/creature.cpp index 27464c51d3..05c3a97986 100644 --- a/src/engines/kotor/creature.cpp +++ b/src/engines/kotor/creature.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/creature.h b/src/engines/kotor/creature.h index 77ca64dc2c..47b96fb3d8 100644 --- a/src/engines/kotor/creature.h +++ b/src/engines/kotor/creature.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/door.cpp b/src/engines/kotor/door.cpp index b50225780c..5ccf7f17da 100644 --- a/src/engines/kotor/door.cpp +++ b/src/engines/kotor/door.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/door.h b/src/engines/kotor/door.h index e5cfaa73df..748fd7c388 100644 --- a/src/engines/kotor/door.h +++ b/src/engines/kotor/door.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/gui.cpp b/src/engines/kotor/gui/gui.cpp index 0c864109e8..789dde3ad1 100644 --- a/src/engines/kotor/gui/gui.cpp +++ b/src/engines/kotor/gui/gui.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/gui.h b/src/engines/kotor/gui/gui.h index 72d8d56f0f..79a3faf33d 100644 --- a/src/engines/kotor/gui/gui.h +++ b/src/engines/kotor/gui/gui.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/main/main.cpp b/src/engines/kotor/gui/main/main.cpp index 6263b0a06a..572bfab083 100644 --- a/src/engines/kotor/gui/main/main.cpp +++ b/src/engines/kotor/gui/main/main.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/main/main.h b/src/engines/kotor/gui/main/main.h index e8670c3d1d..3fda0839b4 100644 --- a/src/engines/kotor/gui/main/main.h +++ b/src/engines/kotor/gui/main/main.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/button.cpp b/src/engines/kotor/gui/widgets/button.cpp index 9185d79409..481ecdd61f 100644 --- a/src/engines/kotor/gui/widgets/button.cpp +++ b/src/engines/kotor/gui/widgets/button.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/button.h b/src/engines/kotor/gui/widgets/button.h index a90fe0da7a..5917a0cc76 100644 --- a/src/engines/kotor/gui/widgets/button.h +++ b/src/engines/kotor/gui/widgets/button.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/checkbox.cpp b/src/engines/kotor/gui/widgets/checkbox.cpp index 111df029c2..3a1156f166 100644 --- a/src/engines/kotor/gui/widgets/checkbox.cpp +++ b/src/engines/kotor/gui/widgets/checkbox.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/checkbox.h b/src/engines/kotor/gui/widgets/checkbox.h index e49f48e4b6..0f951730bb 100644 --- a/src/engines/kotor/gui/widgets/checkbox.h +++ b/src/engines/kotor/gui/widgets/checkbox.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/kotorwidget.cpp b/src/engines/kotor/gui/widgets/kotorwidget.cpp index 993199e723..318b0f809a 100644 --- a/src/engines/kotor/gui/widgets/kotorwidget.cpp +++ b/src/engines/kotor/gui/widgets/kotorwidget.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/kotorwidget.h b/src/engines/kotor/gui/widgets/kotorwidget.h index e062bee989..4f7473943c 100644 --- a/src/engines/kotor/gui/widgets/kotorwidget.h +++ b/src/engines/kotor/gui/widgets/kotorwidget.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/label.cpp b/src/engines/kotor/gui/widgets/label.cpp index 2439eb9213..7c5622f349 100644 --- a/src/engines/kotor/gui/widgets/label.cpp +++ b/src/engines/kotor/gui/widgets/label.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/label.h b/src/engines/kotor/gui/widgets/label.h index 42593a85c0..6b0f615617 100644 --- a/src/engines/kotor/gui/widgets/label.h +++ b/src/engines/kotor/gui/widgets/label.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/listbox.cpp b/src/engines/kotor/gui/widgets/listbox.cpp index 80b87476a5..746e655474 100644 --- a/src/engines/kotor/gui/widgets/listbox.cpp +++ b/src/engines/kotor/gui/widgets/listbox.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/listbox.h b/src/engines/kotor/gui/widgets/listbox.h index 48c821299f..94c9de21de 100644 --- a/src/engines/kotor/gui/widgets/listbox.h +++ b/src/engines/kotor/gui/widgets/listbox.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/panel.cpp b/src/engines/kotor/gui/widgets/panel.cpp index dec1c4a401..064b95d211 100644 --- a/src/engines/kotor/gui/widgets/panel.cpp +++ b/src/engines/kotor/gui/widgets/panel.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/panel.h b/src/engines/kotor/gui/widgets/panel.h index ee03cab842..768794feb1 100644 --- a/src/engines/kotor/gui/widgets/panel.h +++ b/src/engines/kotor/gui/widgets/panel.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/progressbar.cpp b/src/engines/kotor/gui/widgets/progressbar.cpp index 4152b18b60..c84487a77c 100644 --- a/src/engines/kotor/gui/widgets/progressbar.cpp +++ b/src/engines/kotor/gui/widgets/progressbar.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/progressbar.h b/src/engines/kotor/gui/widgets/progressbar.h index 30828f325a..38cea80711 100644 --- a/src/engines/kotor/gui/widgets/progressbar.h +++ b/src/engines/kotor/gui/widgets/progressbar.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/protoitem.cpp b/src/engines/kotor/gui/widgets/protoitem.cpp index da5f77fe7e..0dee329235 100644 --- a/src/engines/kotor/gui/widgets/protoitem.cpp +++ b/src/engines/kotor/gui/widgets/protoitem.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/protoitem.h b/src/engines/kotor/gui/widgets/protoitem.h index e5ab602b8f..8885a71253 100644 --- a/src/engines/kotor/gui/widgets/protoitem.h +++ b/src/engines/kotor/gui/widgets/protoitem.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/scrollbar.cpp b/src/engines/kotor/gui/widgets/scrollbar.cpp index 4ddbcd1d1c..8efb01411f 100644 --- a/src/engines/kotor/gui/widgets/scrollbar.cpp +++ b/src/engines/kotor/gui/widgets/scrollbar.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/scrollbar.h b/src/engines/kotor/gui/widgets/scrollbar.h index 5c45736804..5f8b934934 100644 --- a/src/engines/kotor/gui/widgets/scrollbar.h +++ b/src/engines/kotor/gui/widgets/scrollbar.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/slider.cpp b/src/engines/kotor/gui/widgets/slider.cpp index 00851ca112..57cabb0c60 100644 --- a/src/engines/kotor/gui/widgets/slider.cpp +++ b/src/engines/kotor/gui/widgets/slider.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/gui/widgets/slider.h b/src/engines/kotor/gui/widgets/slider.h index 5acdc3bdf7..90673c8e7f 100644 --- a/src/engines/kotor/gui/widgets/slider.h +++ b/src/engines/kotor/gui/widgets/slider.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/kotor.cpp b/src/engines/kotor/kotor.cpp index fbd68e107d..018b88668c 100644 --- a/src/engines/kotor/kotor.cpp +++ b/src/engines/kotor/kotor.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/kotor.h b/src/engines/kotor/kotor.h index b528a424bc..0c53719e4c 100644 --- a/src/engines/kotor/kotor.h +++ b/src/engines/kotor/kotor.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/modelloader.cpp b/src/engines/kotor/modelloader.cpp index 360ff2e731..13a110c200 100644 --- a/src/engines/kotor/modelloader.cpp +++ b/src/engines/kotor/modelloader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/modelloader.h b/src/engines/kotor/modelloader.h index ee3b0abeab..0f779d9831 100644 --- a/src/engines/kotor/modelloader.h +++ b/src/engines/kotor/modelloader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/module.cpp b/src/engines/kotor/module.cpp index c643e323c6..0c0ecb0d57 100644 --- a/src/engines/kotor/module.cpp +++ b/src/engines/kotor/module.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/module.h b/src/engines/kotor/module.h index e1e7f72882..dd04c07e52 100644 --- a/src/engines/kotor/module.h +++ b/src/engines/kotor/module.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/object.cpp b/src/engines/kotor/object.cpp index e39865dfb2..b5e1653ea5 100644 --- a/src/engines/kotor/object.cpp +++ b/src/engines/kotor/object.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/object.h b/src/engines/kotor/object.h index 387260f3a7..f127e3285a 100644 --- a/src/engines/kotor/object.h +++ b/src/engines/kotor/object.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/placeable.cpp b/src/engines/kotor/placeable.cpp index 4d6bc22802..95192d934e 100644 --- a/src/engines/kotor/placeable.cpp +++ b/src/engines/kotor/placeable.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/placeable.h b/src/engines/kotor/placeable.h index b87791c6d2..6cf2bdee07 100644 --- a/src/engines/kotor/placeable.h +++ b/src/engines/kotor/placeable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/situated.cpp b/src/engines/kotor/situated.cpp index fe028acb49..b6c678e144 100644 --- a/src/engines/kotor/situated.cpp +++ b/src/engines/kotor/situated.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor/situated.h b/src/engines/kotor/situated.h index 982aa88736..0e1c1e8e6f 100644 --- a/src/engines/kotor/situated.h +++ b/src/engines/kotor/situated.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/area.cpp b/src/engines/kotor2/area.cpp index 9507c0c05d..5cd21c66d0 100644 --- a/src/engines/kotor2/area.cpp +++ b/src/engines/kotor2/area.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/area.h b/src/engines/kotor2/area.h index 12ebed15cf..0d80a6cf72 100644 --- a/src/engines/kotor2/area.h +++ b/src/engines/kotor2/area.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/gui/main/main.cpp b/src/engines/kotor2/gui/main/main.cpp index 032d4ef76e..2b7006ac28 100644 --- a/src/engines/kotor2/gui/main/main.cpp +++ b/src/engines/kotor2/gui/main/main.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/gui/main/main.h b/src/engines/kotor2/gui/main/main.h index 88a62dd41f..853626d7c6 100644 --- a/src/engines/kotor2/gui/main/main.h +++ b/src/engines/kotor2/gui/main/main.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/kotor2.cpp b/src/engines/kotor2/kotor2.cpp index 8633ac97b2..d470f17ab4 100644 --- a/src/engines/kotor2/kotor2.cpp +++ b/src/engines/kotor2/kotor2.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/kotor2.h b/src/engines/kotor2/kotor2.h index 7c46a58187..939370b5e2 100644 --- a/src/engines/kotor2/kotor2.h +++ b/src/engines/kotor2/kotor2.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/modelloader.cpp b/src/engines/kotor2/modelloader.cpp index 87754d0da1..04b68b01d5 100644 --- a/src/engines/kotor2/modelloader.cpp +++ b/src/engines/kotor2/modelloader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/modelloader.h b/src/engines/kotor2/modelloader.h index f09b08f855..3c5b26ba86 100644 --- a/src/engines/kotor2/modelloader.h +++ b/src/engines/kotor2/modelloader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/module.cpp b/src/engines/kotor2/module.cpp index 26322e0ebf..6157ab6065 100644 --- a/src/engines/kotor2/module.cpp +++ b/src/engines/kotor2/module.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/kotor2/module.h b/src/engines/kotor2/module.h index 2dc87a2f46..9505514b84 100644 --- a/src/engines/kotor2/module.h +++ b/src/engines/kotor2/module.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/area.cpp b/src/engines/nwn/area.cpp index 91ca114990..32cd9c718b 100644 --- a/src/engines/nwn/area.cpp +++ b/src/engines/nwn/area.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/area.h b/src/engines/nwn/area.h index a35e718ba2..bfff52bd0a 100644 --- a/src/engines/nwn/area.h +++ b/src/engines/nwn/area.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/console.cpp b/src/engines/nwn/console.cpp index 00672932bd..2b239953ed 100644 --- a/src/engines/nwn/console.cpp +++ b/src/engines/nwn/console.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/console.h b/src/engines/nwn/console.h index 81b6a0b6b6..563e8d5bd6 100644 --- a/src/engines/nwn/console.h +++ b/src/engines/nwn/console.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/creature.cpp b/src/engines/nwn/creature.cpp index 9e0fda5b6f..84e87c96fa 100644 --- a/src/engines/nwn/creature.cpp +++ b/src/engines/nwn/creature.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/creature.h b/src/engines/nwn/creature.h index 42ea2519ae..62222ed193 100644 --- a/src/engines/nwn/creature.h +++ b/src/engines/nwn/creature.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/door.cpp b/src/engines/nwn/door.cpp index c4396379da..68c008a90a 100644 --- a/src/engines/nwn/door.cpp +++ b/src/engines/nwn/door.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/door.h b/src/engines/nwn/door.h index 5b1ab1181b..223a6eb0d8 100644 --- a/src/engines/nwn/door.h +++ b/src/engines/nwn/door.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/chargen/chargen.cpp b/src/engines/nwn/gui/chargen/chargen.cpp index 4dac74a8d0..1113d318ad 100644 --- a/src/engines/nwn/gui/chargen/chargen.cpp +++ b/src/engines/nwn/gui/chargen/chargen.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/chargen/chargen.h b/src/engines/nwn/gui/chargen/chargen.h index cb39b64e9f..d2f443c8b3 100644 --- a/src/engines/nwn/gui/chargen/chargen.h +++ b/src/engines/nwn/gui/chargen/chargen.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/dialogs/okcancel.cpp b/src/engines/nwn/gui/dialogs/okcancel.cpp index 6e66c1777f..1f8b84814f 100644 --- a/src/engines/nwn/gui/dialogs/okcancel.cpp +++ b/src/engines/nwn/gui/dialogs/okcancel.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/dialogs/okcancel.h b/src/engines/nwn/gui/dialogs/okcancel.h index 349190ae4f..8b8b18fd92 100644 --- a/src/engines/nwn/gui/dialogs/okcancel.h +++ b/src/engines/nwn/gui/dialogs/okcancel.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/dialogs/yesnocancel.cpp b/src/engines/nwn/gui/dialogs/yesnocancel.cpp index cea724a30a..60626ac5cd 100644 --- a/src/engines/nwn/gui/dialogs/yesnocancel.cpp +++ b/src/engines/nwn/gui/dialogs/yesnocancel.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/dialogs/yesnocancel.h b/src/engines/nwn/gui/dialogs/yesnocancel.h index deb8994d51..1ac592ff0c 100644 --- a/src/engines/nwn/gui/dialogs/yesnocancel.h +++ b/src/engines/nwn/gui/dialogs/yesnocancel.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/gui.cpp b/src/engines/nwn/gui/gui.cpp index 1253363452..864946efda 100644 --- a/src/engines/nwn/gui/gui.cpp +++ b/src/engines/nwn/gui/gui.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/gui.h b/src/engines/nwn/gui/gui.h index 628b908919..ed7caf3fa9 100644 --- a/src/engines/nwn/gui/gui.h +++ b/src/engines/nwn/gui/gui.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/charinfo.cpp b/src/engines/nwn/gui/ingame/charinfo.cpp index cc6af4642b..4364b473cc 100644 --- a/src/engines/nwn/gui/ingame/charinfo.cpp +++ b/src/engines/nwn/gui/ingame/charinfo.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/charinfo.h b/src/engines/nwn/gui/ingame/charinfo.h index d60a789a9e..836472b4dd 100644 --- a/src/engines/nwn/gui/ingame/charinfo.h +++ b/src/engines/nwn/gui/ingame/charinfo.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/compass.cpp b/src/engines/nwn/gui/ingame/compass.cpp index 99b0b615e9..af45531efb 100644 --- a/src/engines/nwn/gui/ingame/compass.cpp +++ b/src/engines/nwn/gui/ingame/compass.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/compass.h b/src/engines/nwn/gui/ingame/compass.h index a8dafbc9d4..14608035e3 100644 --- a/src/engines/nwn/gui/ingame/compass.h +++ b/src/engines/nwn/gui/ingame/compass.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/dialog.cpp b/src/engines/nwn/gui/ingame/dialog.cpp index a08d283dbb..af749a1445 100644 --- a/src/engines/nwn/gui/ingame/dialog.cpp +++ b/src/engines/nwn/gui/ingame/dialog.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/dialog.h b/src/engines/nwn/gui/ingame/dialog.h index c0a9265f48..1b1416b268 100644 --- a/src/engines/nwn/gui/ingame/dialog.h +++ b/src/engines/nwn/gui/ingame/dialog.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/ingame.cpp b/src/engines/nwn/gui/ingame/ingame.cpp index ae25dd34d7..9a6ee7ebd8 100644 --- a/src/engines/nwn/gui/ingame/ingame.cpp +++ b/src/engines/nwn/gui/ingame/ingame.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/ingame.h b/src/engines/nwn/gui/ingame/ingame.h index 81d20dd23f..67b5212ec8 100644 --- a/src/engines/nwn/gui/ingame/ingame.h +++ b/src/engines/nwn/gui/ingame/ingame.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/main.cpp b/src/engines/nwn/gui/ingame/main.cpp index 86b9691011..c73c321ac8 100644 --- a/src/engines/nwn/gui/ingame/main.cpp +++ b/src/engines/nwn/gui/ingame/main.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/main.h b/src/engines/nwn/gui/ingame/main.h index 88bf26f125..1e8a420003 100644 --- a/src/engines/nwn/gui/ingame/main.h +++ b/src/engines/nwn/gui/ingame/main.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/partyleader.cpp b/src/engines/nwn/gui/ingame/partyleader.cpp index a604064ce8..9b5cb794e5 100644 --- a/src/engines/nwn/gui/ingame/partyleader.cpp +++ b/src/engines/nwn/gui/ingame/partyleader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/partyleader.h b/src/engines/nwn/gui/ingame/partyleader.h index 951ca8c7f9..3b37a9473a 100644 --- a/src/engines/nwn/gui/ingame/partyleader.h +++ b/src/engines/nwn/gui/ingame/partyleader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/quickbar.cpp b/src/engines/nwn/gui/ingame/quickbar.cpp index ceab4ce91d..73d40b7716 100644 --- a/src/engines/nwn/gui/ingame/quickbar.cpp +++ b/src/engines/nwn/gui/ingame/quickbar.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/quickbar.h b/src/engines/nwn/gui/ingame/quickbar.h index aeac0a0d4c..b8e12416f7 100644 --- a/src/engines/nwn/gui/ingame/quickbar.h +++ b/src/engines/nwn/gui/ingame/quickbar.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/quickchat.cpp b/src/engines/nwn/gui/ingame/quickchat.cpp index 46fbe7c2e7..31eed4de66 100644 --- a/src/engines/nwn/gui/ingame/quickchat.cpp +++ b/src/engines/nwn/gui/ingame/quickchat.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/ingame/quickchat.h b/src/engines/nwn/gui/ingame/quickchat.h index 5be84b2271..bfe4cf3a50 100644 --- a/src/engines/nwn/gui/ingame/quickchat.h +++ b/src/engines/nwn/gui/ingame/quickchat.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/legal.cpp b/src/engines/nwn/gui/legal.cpp index e377e6d259..845bfb6194 100644 --- a/src/engines/nwn/gui/legal.cpp +++ b/src/engines/nwn/gui/legal.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/legal.h b/src/engines/nwn/gui/legal.h index f0bdf79a4a..fb540c24ff 100644 --- a/src/engines/nwn/gui/legal.h +++ b/src/engines/nwn/gui/legal.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/charpremade.cpp b/src/engines/nwn/gui/main/charpremade.cpp index 478bd0ae2f..c447dde7ef 100644 --- a/src/engines/nwn/gui/main/charpremade.cpp +++ b/src/engines/nwn/gui/main/charpremade.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/charpremade.h b/src/engines/nwn/gui/main/charpremade.h index 1a0af106e4..052c125343 100644 --- a/src/engines/nwn/gui/main/charpremade.h +++ b/src/engines/nwn/gui/main/charpremade.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/chartype.cpp b/src/engines/nwn/gui/main/chartype.cpp index dc3b02989c..86a42994f3 100644 --- a/src/engines/nwn/gui/main/chartype.cpp +++ b/src/engines/nwn/gui/main/chartype.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/chartype.h b/src/engines/nwn/gui/main/chartype.h index 51cd2b6aff..f4843e8b01 100644 --- a/src/engines/nwn/gui/main/chartype.h +++ b/src/engines/nwn/gui/main/chartype.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/main.cpp b/src/engines/nwn/gui/main/main.cpp index 4efd1c7b0f..d0ce7f432c 100644 --- a/src/engines/nwn/gui/main/main.cpp +++ b/src/engines/nwn/gui/main/main.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/main.h b/src/engines/nwn/gui/main/main.h index d251109efd..6da2f4bb9b 100644 --- a/src/engines/nwn/gui/main/main.h +++ b/src/engines/nwn/gui/main/main.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/moviesbase.cpp b/src/engines/nwn/gui/main/moviesbase.cpp index 076cef19a1..01af6010ce 100644 --- a/src/engines/nwn/gui/main/moviesbase.cpp +++ b/src/engines/nwn/gui/main/moviesbase.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/moviesbase.h b/src/engines/nwn/gui/main/moviesbase.h index ef54ca066f..33bb4f41d5 100644 --- a/src/engines/nwn/gui/main/moviesbase.h +++ b/src/engines/nwn/gui/main/moviesbase.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/moviescamp.cpp b/src/engines/nwn/gui/main/moviescamp.cpp index 82c764ddff..ab54a252f2 100644 --- a/src/engines/nwn/gui/main/moviescamp.cpp +++ b/src/engines/nwn/gui/main/moviescamp.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/moviescamp.h b/src/engines/nwn/gui/main/moviescamp.h index b3bd407be7..70a0d8bea5 100644 --- a/src/engines/nwn/gui/main/moviescamp.h +++ b/src/engines/nwn/gui/main/moviescamp.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/new.cpp b/src/engines/nwn/gui/main/new.cpp index 7778c9063f..94fb059705 100644 --- a/src/engines/nwn/gui/main/new.cpp +++ b/src/engines/nwn/gui/main/new.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/new.h b/src/engines/nwn/gui/main/new.h index d3593284f9..1443a83035 100644 --- a/src/engines/nwn/gui/main/new.h +++ b/src/engines/nwn/gui/main/new.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newcamp.cpp b/src/engines/nwn/gui/main/newcamp.cpp index 306ae6166f..437bbe1d06 100644 --- a/src/engines/nwn/gui/main/newcamp.cpp +++ b/src/engines/nwn/gui/main/newcamp.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newcamp.h b/src/engines/nwn/gui/main/newcamp.h index 71de4aa921..f7745fc5a3 100644 --- a/src/engines/nwn/gui/main/newcamp.h +++ b/src/engines/nwn/gui/main/newcamp.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newgamefog.cpp b/src/engines/nwn/gui/main/newgamefog.cpp index 7d329a6c31..bdd2d6f9a1 100644 --- a/src/engines/nwn/gui/main/newgamefog.cpp +++ b/src/engines/nwn/gui/main/newgamefog.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newgamefog.h b/src/engines/nwn/gui/main/newgamefog.h index df52ff8706..75de335274 100644 --- a/src/engines/nwn/gui/main/newgamefog.h +++ b/src/engines/nwn/gui/main/newgamefog.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newmodule.cpp b/src/engines/nwn/gui/main/newmodule.cpp index 02c0de4222..9ee88e05fa 100644 --- a/src/engines/nwn/gui/main/newmodule.cpp +++ b/src/engines/nwn/gui/main/newmodule.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newmodule.h b/src/engines/nwn/gui/main/newmodule.h index 7456da5cc4..8179045370 100644 --- a/src/engines/nwn/gui/main/newmodule.h +++ b/src/engines/nwn/gui/main/newmodule.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newxp1.cpp b/src/engines/nwn/gui/main/newxp1.cpp index 8e48d488df..e9aa3a809e 100644 --- a/src/engines/nwn/gui/main/newxp1.cpp +++ b/src/engines/nwn/gui/main/newxp1.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newxp1.h b/src/engines/nwn/gui/main/newxp1.h index 10119f0662..91ffb52e53 100644 --- a/src/engines/nwn/gui/main/newxp1.h +++ b/src/engines/nwn/gui/main/newxp1.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newxp2.cpp b/src/engines/nwn/gui/main/newxp2.cpp index 0cf1e47d8d..cfe0802d23 100644 --- a/src/engines/nwn/gui/main/newxp2.cpp +++ b/src/engines/nwn/gui/main/newxp2.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/newxp2.h b/src/engines/nwn/gui/main/newxp2.h index 6ecc88df01..f616c271cd 100644 --- a/src/engines/nwn/gui/main/newxp2.h +++ b/src/engines/nwn/gui/main/newxp2.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/options.cpp b/src/engines/nwn/gui/main/options.cpp index 96bf9a7e44..d0f2e01ab3 100644 --- a/src/engines/nwn/gui/main/options.cpp +++ b/src/engines/nwn/gui/main/options.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/main/options.h b/src/engines/nwn/gui/main/options.h index 5319a52522..dd75c5549d 100644 --- a/src/engines/nwn/gui/main/options.h +++ b/src/engines/nwn/gui/main/options.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/controls.cpp b/src/engines/nwn/gui/options/controls.cpp index 00c60bcdf2..2e8054d0b0 100644 --- a/src/engines/nwn/gui/options/controls.cpp +++ b/src/engines/nwn/gui/options/controls.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/controls.h b/src/engines/nwn/gui/options/controls.h index 307bfe2afa..a95a8634c3 100644 --- a/src/engines/nwn/gui/options/controls.h +++ b/src/engines/nwn/gui/options/controls.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/feedback.cpp b/src/engines/nwn/gui/options/feedback.cpp index 58515fab0d..8a8be11ae3 100644 --- a/src/engines/nwn/gui/options/feedback.cpp +++ b/src/engines/nwn/gui/options/feedback.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/feedback.h b/src/engines/nwn/gui/options/feedback.h index 578f71053e..b3957bb984 100644 --- a/src/engines/nwn/gui/options/feedback.h +++ b/src/engines/nwn/gui/options/feedback.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/game.cpp b/src/engines/nwn/gui/options/game.cpp index 9730422bf6..1339d2855c 100644 --- a/src/engines/nwn/gui/options/game.cpp +++ b/src/engines/nwn/gui/options/game.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/game.h b/src/engines/nwn/gui/options/game.h index 69f119a08a..36ee7df488 100644 --- a/src/engines/nwn/gui/options/game.h +++ b/src/engines/nwn/gui/options/game.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/gorepass.cpp b/src/engines/nwn/gui/options/gorepass.cpp index e2f034129f..17ff6a09e4 100644 --- a/src/engines/nwn/gui/options/gorepass.cpp +++ b/src/engines/nwn/gui/options/gorepass.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/gorepass.h b/src/engines/nwn/gui/options/gorepass.h index 18d111ddf4..564c8792f3 100644 --- a/src/engines/nwn/gui/options/gorepass.h +++ b/src/engines/nwn/gui/options/gorepass.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/resolution.cpp b/src/engines/nwn/gui/options/resolution.cpp index d9aa7dec0e..c2a45cc94c 100644 --- a/src/engines/nwn/gui/options/resolution.cpp +++ b/src/engines/nwn/gui/options/resolution.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/resolution.h b/src/engines/nwn/gui/options/resolution.h index 8cde99f9c2..3013eb9b50 100644 --- a/src/engines/nwn/gui/options/resolution.h +++ b/src/engines/nwn/gui/options/resolution.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/sound.cpp b/src/engines/nwn/gui/options/sound.cpp index 2de6e9bd04..029cf4c93e 100644 --- a/src/engines/nwn/gui/options/sound.cpp +++ b/src/engines/nwn/gui/options/sound.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/sound.h b/src/engines/nwn/gui/options/sound.h index ab6abe9212..e0c0be0aa9 100644 --- a/src/engines/nwn/gui/options/sound.h +++ b/src/engines/nwn/gui/options/sound.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/soundadv.cpp b/src/engines/nwn/gui/options/soundadv.cpp index 12a3afcde1..2623d9564c 100644 --- a/src/engines/nwn/gui/options/soundadv.cpp +++ b/src/engines/nwn/gui/options/soundadv.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/soundadv.h b/src/engines/nwn/gui/options/soundadv.h index a0430eb21e..f808962040 100644 --- a/src/engines/nwn/gui/options/soundadv.h +++ b/src/engines/nwn/gui/options/soundadv.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/video.cpp b/src/engines/nwn/gui/options/video.cpp index 96d298fed5..a2c56dc265 100644 --- a/src/engines/nwn/gui/options/video.cpp +++ b/src/engines/nwn/gui/options/video.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/video.h b/src/engines/nwn/gui/options/video.h index 4c4a6911f2..d39c4f321c 100644 --- a/src/engines/nwn/gui/options/video.h +++ b/src/engines/nwn/gui/options/video.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/videoadv.cpp b/src/engines/nwn/gui/options/videoadv.cpp index 05a5a3d0b5..cb83bd10f4 100644 --- a/src/engines/nwn/gui/options/videoadv.cpp +++ b/src/engines/nwn/gui/options/videoadv.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/options/videoadv.h b/src/engines/nwn/gui/options/videoadv.h index 79b8300fef..b523948158 100644 --- a/src/engines/nwn/gui/options/videoadv.h +++ b/src/engines/nwn/gui/options/videoadv.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/button.cpp b/src/engines/nwn/gui/widgets/button.cpp index e9ccd2d7bf..3074fa61cc 100644 --- a/src/engines/nwn/gui/widgets/button.cpp +++ b/src/engines/nwn/gui/widgets/button.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/button.h b/src/engines/nwn/gui/widgets/button.h index 968570014d..e5377d0170 100644 --- a/src/engines/nwn/gui/widgets/button.h +++ b/src/engines/nwn/gui/widgets/button.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/checkbox.cpp b/src/engines/nwn/gui/widgets/checkbox.cpp index 82649e0e4a..c0380b6d72 100644 --- a/src/engines/nwn/gui/widgets/checkbox.cpp +++ b/src/engines/nwn/gui/widgets/checkbox.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/checkbox.h b/src/engines/nwn/gui/widgets/checkbox.h index 1dd0afe15f..1a364d1fbc 100644 --- a/src/engines/nwn/gui/widgets/checkbox.h +++ b/src/engines/nwn/gui/widgets/checkbox.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/close.cpp b/src/engines/nwn/gui/widgets/close.cpp index 5bb7d7f59c..4583206e4d 100644 --- a/src/engines/nwn/gui/widgets/close.cpp +++ b/src/engines/nwn/gui/widgets/close.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/close.h b/src/engines/nwn/gui/widgets/close.h index 3030eb19ff..a59c13ebf9 100644 --- a/src/engines/nwn/gui/widgets/close.h +++ b/src/engines/nwn/gui/widgets/close.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/editbox.cpp b/src/engines/nwn/gui/widgets/editbox.cpp index 33ffad47e7..63f1faf217 100644 --- a/src/engines/nwn/gui/widgets/editbox.cpp +++ b/src/engines/nwn/gui/widgets/editbox.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/editbox.h b/src/engines/nwn/gui/widgets/editbox.h index 020f039dca..9bf1e095eb 100644 --- a/src/engines/nwn/gui/widgets/editbox.h +++ b/src/engines/nwn/gui/widgets/editbox.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/frame.cpp b/src/engines/nwn/gui/widgets/frame.cpp index 0eea20b9c2..6a24eba249 100644 --- a/src/engines/nwn/gui/widgets/frame.cpp +++ b/src/engines/nwn/gui/widgets/frame.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/frame.h b/src/engines/nwn/gui/widgets/frame.h index 79f5b31ef5..b3db66f4a0 100644 --- a/src/engines/nwn/gui/widgets/frame.h +++ b/src/engines/nwn/gui/widgets/frame.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/label.cpp b/src/engines/nwn/gui/widgets/label.cpp index b211161897..70d0dc6231 100644 --- a/src/engines/nwn/gui/widgets/label.cpp +++ b/src/engines/nwn/gui/widgets/label.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/label.h b/src/engines/nwn/gui/widgets/label.h index ee5333e52a..2ce3b843eb 100644 --- a/src/engines/nwn/gui/widgets/label.h +++ b/src/engines/nwn/gui/widgets/label.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/listbox.cpp b/src/engines/nwn/gui/widgets/listbox.cpp index 8185ebc9b7..21aa81c280 100644 --- a/src/engines/nwn/gui/widgets/listbox.cpp +++ b/src/engines/nwn/gui/widgets/listbox.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/listbox.h b/src/engines/nwn/gui/widgets/listbox.h index 5a5fae77b9..e3e03d3c79 100644 --- a/src/engines/nwn/gui/widgets/listbox.h +++ b/src/engines/nwn/gui/widgets/listbox.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/modelwidget.cpp b/src/engines/nwn/gui/widgets/modelwidget.cpp index 71eea48f66..f13b6d0d54 100644 --- a/src/engines/nwn/gui/widgets/modelwidget.cpp +++ b/src/engines/nwn/gui/widgets/modelwidget.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/modelwidget.h b/src/engines/nwn/gui/widgets/modelwidget.h index 9e5f44dc0c..f87cd828c9 100644 --- a/src/engines/nwn/gui/widgets/modelwidget.h +++ b/src/engines/nwn/gui/widgets/modelwidget.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/nwnwidget.cpp b/src/engines/nwn/gui/widgets/nwnwidget.cpp index 871480b12e..5e90dc0d9c 100644 --- a/src/engines/nwn/gui/widgets/nwnwidget.cpp +++ b/src/engines/nwn/gui/widgets/nwnwidget.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/nwnwidget.h b/src/engines/nwn/gui/widgets/nwnwidget.h index 1c49c19cf2..4aac168f26 100644 --- a/src/engines/nwn/gui/widgets/nwnwidget.h +++ b/src/engines/nwn/gui/widgets/nwnwidget.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/panel.cpp b/src/engines/nwn/gui/widgets/panel.cpp index b4a2643cb9..28d932b3cf 100644 --- a/src/engines/nwn/gui/widgets/panel.cpp +++ b/src/engines/nwn/gui/widgets/panel.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/panel.h b/src/engines/nwn/gui/widgets/panel.h index ddcd49d6e9..aa8b9cb95a 100644 --- a/src/engines/nwn/gui/widgets/panel.h +++ b/src/engines/nwn/gui/widgets/panel.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/portrait.cpp b/src/engines/nwn/gui/widgets/portrait.cpp index e13c66ffaa..48f3263803 100644 --- a/src/engines/nwn/gui/widgets/portrait.cpp +++ b/src/engines/nwn/gui/widgets/portrait.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/portrait.h b/src/engines/nwn/gui/widgets/portrait.h index 445f24e758..9ebf05d6b5 100644 --- a/src/engines/nwn/gui/widgets/portrait.h +++ b/src/engines/nwn/gui/widgets/portrait.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/quadwidget.cpp b/src/engines/nwn/gui/widgets/quadwidget.cpp index 4abee7bf43..7eaedd5a90 100644 --- a/src/engines/nwn/gui/widgets/quadwidget.cpp +++ b/src/engines/nwn/gui/widgets/quadwidget.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/quadwidget.h b/src/engines/nwn/gui/widgets/quadwidget.h index 4ae6ebba33..ed808e6e3f 100644 --- a/src/engines/nwn/gui/widgets/quadwidget.h +++ b/src/engines/nwn/gui/widgets/quadwidget.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/scrollbar.cpp b/src/engines/nwn/gui/widgets/scrollbar.cpp index 7bef077c17..52b33303da 100644 --- a/src/engines/nwn/gui/widgets/scrollbar.cpp +++ b/src/engines/nwn/gui/widgets/scrollbar.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/scrollbar.h b/src/engines/nwn/gui/widgets/scrollbar.h index 8af5991d56..3310ff6ee9 100644 --- a/src/engines/nwn/gui/widgets/scrollbar.h +++ b/src/engines/nwn/gui/widgets/scrollbar.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/slider.cpp b/src/engines/nwn/gui/widgets/slider.cpp index 4c8758d572..61c75acdaa 100644 --- a/src/engines/nwn/gui/widgets/slider.cpp +++ b/src/engines/nwn/gui/widgets/slider.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/slider.h b/src/engines/nwn/gui/widgets/slider.h index 4e05bd0d87..2cee080175 100644 --- a/src/engines/nwn/gui/widgets/slider.h +++ b/src/engines/nwn/gui/widgets/slider.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/textwidget.cpp b/src/engines/nwn/gui/widgets/textwidget.cpp index 0341d2b325..497aacae0f 100644 --- a/src/engines/nwn/gui/widgets/textwidget.cpp +++ b/src/engines/nwn/gui/widgets/textwidget.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/textwidget.h b/src/engines/nwn/gui/widgets/textwidget.h index 6db61c293d..e25ed7df59 100644 --- a/src/engines/nwn/gui/widgets/textwidget.h +++ b/src/engines/nwn/gui/widgets/textwidget.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/tooltip.cpp b/src/engines/nwn/gui/widgets/tooltip.cpp index 690aa45486..ea1f078e4f 100644 --- a/src/engines/nwn/gui/widgets/tooltip.cpp +++ b/src/engines/nwn/gui/widgets/tooltip.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/gui/widgets/tooltip.h b/src/engines/nwn/gui/widgets/tooltip.h index ba54c585f3..f27c71afde 100644 --- a/src/engines/nwn/gui/widgets/tooltip.h +++ b/src/engines/nwn/gui/widgets/tooltip.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/ifofile.cpp b/src/engines/nwn/ifofile.cpp index 37dc8d8850..64b4df475f 100644 --- a/src/engines/nwn/ifofile.cpp +++ b/src/engines/nwn/ifofile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/ifofile.h b/src/engines/nwn/ifofile.h index b75009f087..27059bbef9 100644 --- a/src/engines/nwn/ifofile.h +++ b/src/engines/nwn/ifofile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/location.cpp b/src/engines/nwn/location.cpp index 2a82aee78e..bdd8b2cbe7 100644 --- a/src/engines/nwn/location.cpp +++ b/src/engines/nwn/location.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/location.h b/src/engines/nwn/location.h index 4bd641ce96..70b15a3a1b 100644 --- a/src/engines/nwn/location.h +++ b/src/engines/nwn/location.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/modelloader.cpp b/src/engines/nwn/modelloader.cpp index 6b0a161b18..5bd5f19f2b 100644 --- a/src/engines/nwn/modelloader.cpp +++ b/src/engines/nwn/modelloader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/modelloader.h b/src/engines/nwn/modelloader.h index 8d4e3fbcd4..c4696d49aa 100644 --- a/src/engines/nwn/modelloader.h +++ b/src/engines/nwn/modelloader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/module.cpp b/src/engines/nwn/module.cpp index 1c073e8840..0533570e6d 100644 --- a/src/engines/nwn/module.cpp +++ b/src/engines/nwn/module.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/module.h b/src/engines/nwn/module.h index 156a28d97c..efbcc56ae3 100644 --- a/src/engines/nwn/module.h +++ b/src/engines/nwn/module.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/nwn.cpp b/src/engines/nwn/nwn.cpp index 4646f7366b..aafa36dfc0 100644 --- a/src/engines/nwn/nwn.cpp +++ b/src/engines/nwn/nwn.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/nwn.h b/src/engines/nwn/nwn.h index ffb7660ef1..f1bf06a38c 100644 --- a/src/engines/nwn/nwn.h +++ b/src/engines/nwn/nwn.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/object.cpp b/src/engines/nwn/object.cpp index f488c0382e..ee69c2c506 100644 --- a/src/engines/nwn/object.cpp +++ b/src/engines/nwn/object.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/object.h b/src/engines/nwn/object.h index d0cabe574f..b3715dc262 100644 --- a/src/engines/nwn/object.h +++ b/src/engines/nwn/object.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/placeable.cpp b/src/engines/nwn/placeable.cpp index 32b84b767f..7dcdab6e56 100644 --- a/src/engines/nwn/placeable.cpp +++ b/src/engines/nwn/placeable.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/placeable.h b/src/engines/nwn/placeable.h index 0097fca3d6..fd150dfa05 100644 --- a/src/engines/nwn/placeable.h +++ b/src/engines/nwn/placeable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/container.cpp b/src/engines/nwn/script/container.cpp index 73d3fe8882..e9df699724 100644 --- a/src/engines/nwn/script/container.cpp +++ b/src/engines/nwn/script/container.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/container.h b/src/engines/nwn/script/container.h index f3903bf215..154bf4873b 100644 --- a/src/engines/nwn/script/container.h +++ b/src/engines/nwn/script/container.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions.cpp b/src/engines/nwn/script/functions.cpp index 7a2aa5c8f2..ef37b9f2ca 100644 --- a/src/engines/nwn/script/functions.cpp +++ b/src/engines/nwn/script/functions.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions.h b/src/engines/nwn/script/functions.h index 2f3072f32f..b4f9a7d351 100644 --- a/src/engines/nwn/script/functions.h +++ b/src/engines/nwn/script/functions.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_000.cpp b/src/engines/nwn/script/functions_000.cpp index daf08da64a..3b2bb600b7 100644 --- a/src/engines/nwn/script/functions_000.cpp +++ b/src/engines/nwn/script/functions_000.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_100.cpp b/src/engines/nwn/script/functions_100.cpp index 4e325149f3..9daac101ec 100644 --- a/src/engines/nwn/script/functions_100.cpp +++ b/src/engines/nwn/script/functions_100.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_200.cpp b/src/engines/nwn/script/functions_200.cpp index 6ad01ebcbf..e9d821271f 100644 --- a/src/engines/nwn/script/functions_200.cpp +++ b/src/engines/nwn/script/functions_200.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_300.cpp b/src/engines/nwn/script/functions_300.cpp index 669e23f19e..38f10a7ba3 100644 --- a/src/engines/nwn/script/functions_300.cpp +++ b/src/engines/nwn/script/functions_300.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_400.cpp b/src/engines/nwn/script/functions_400.cpp index 7f10fc321c..34a021bc3b 100644 --- a/src/engines/nwn/script/functions_400.cpp +++ b/src/engines/nwn/script/functions_400.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_500.cpp b/src/engines/nwn/script/functions_500.cpp index 824ac97b57..997e59400a 100644 --- a/src/engines/nwn/script/functions_500.cpp +++ b/src/engines/nwn/script/functions_500.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_600.cpp b/src/engines/nwn/script/functions_600.cpp index 35cd9f19dc..b520bf8ca9 100644 --- a/src/engines/nwn/script/functions_600.cpp +++ b/src/engines/nwn/script/functions_600.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_700.cpp b/src/engines/nwn/script/functions_700.cpp index 75155f2da1..632d92da02 100644 --- a/src/engines/nwn/script/functions_700.cpp +++ b/src/engines/nwn/script/functions_700.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/script/functions_800.cpp b/src/engines/nwn/script/functions_800.cpp index 7730aacb21..b5103734d7 100644 --- a/src/engines/nwn/script/functions_800.cpp +++ b/src/engines/nwn/script/functions_800.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/situated.cpp b/src/engines/nwn/situated.cpp index d7ae9fd028..a43dd397db 100644 --- a/src/engines/nwn/situated.cpp +++ b/src/engines/nwn/situated.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/situated.h b/src/engines/nwn/situated.h index 73bc831b37..d961e5d995 100644 --- a/src/engines/nwn/situated.h +++ b/src/engines/nwn/situated.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/tileset.cpp b/src/engines/nwn/tileset.cpp index 68ffac2e8e..af5f7c04f8 100644 --- a/src/engines/nwn/tileset.cpp +++ b/src/engines/nwn/tileset.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/tileset.h b/src/engines/nwn/tileset.h index 42bd7d56b3..67dbc57ad2 100644 --- a/src/engines/nwn/tileset.h +++ b/src/engines/nwn/tileset.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/types.cpp b/src/engines/nwn/types.cpp index d7b4be62c7..73c304e1fe 100644 --- a/src/engines/nwn/types.cpp +++ b/src/engines/nwn/types.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/types.h b/src/engines/nwn/types.h index 5084353e77..8bc9375d99 100644 --- a/src/engines/nwn/types.h +++ b/src/engines/nwn/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/waypoint.cpp b/src/engines/nwn/waypoint.cpp index d32cb02101..49930d8ab9 100644 --- a/src/engines/nwn/waypoint.cpp +++ b/src/engines/nwn/waypoint.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn/waypoint.h b/src/engines/nwn/waypoint.h index 7839cb9995..c08bd2121c 100644 --- a/src/engines/nwn/waypoint.h +++ b/src/engines/nwn/waypoint.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn2/modelloader.cpp b/src/engines/nwn2/modelloader.cpp index 837efa9fbf..16fbf573eb 100644 --- a/src/engines/nwn2/modelloader.cpp +++ b/src/engines/nwn2/modelloader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn2/modelloader.h b/src/engines/nwn2/modelloader.h index a0f50369db..1b1f70c42e 100644 --- a/src/engines/nwn2/modelloader.h +++ b/src/engines/nwn2/modelloader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn2/nwn2.cpp b/src/engines/nwn2/nwn2.cpp index d1b1093bb1..0df8d21110 100644 --- a/src/engines/nwn2/nwn2.cpp +++ b/src/engines/nwn2/nwn2.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/nwn2/nwn2.h b/src/engines/nwn2/nwn2.h index 906e2f9c55..171223172d 100644 --- a/src/engines/nwn2/nwn2.h +++ b/src/engines/nwn2/nwn2.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/sonic/sonic.cpp b/src/engines/sonic/sonic.cpp index b1bb743dcc..19c00d820f 100644 --- a/src/engines/sonic/sonic.cpp +++ b/src/engines/sonic/sonic.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/sonic/sonic.h b/src/engines/sonic/sonic.h index df94cdccf7..8a16b2f536 100644 --- a/src/engines/sonic/sonic.h +++ b/src/engines/sonic/sonic.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/thewitcher/modelloader.cpp b/src/engines/thewitcher/modelloader.cpp index d72565c13d..f8a18abc70 100644 --- a/src/engines/thewitcher/modelloader.cpp +++ b/src/engines/thewitcher/modelloader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/thewitcher/modelloader.h b/src/engines/thewitcher/modelloader.h index cb166b90ce..f9c0778f2b 100644 --- a/src/engines/thewitcher/modelloader.h +++ b/src/engines/thewitcher/modelloader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/thewitcher/thewitcher.cpp b/src/engines/thewitcher/thewitcher.cpp index 00348aff14..db4d6c2bab 100644 --- a/src/engines/thewitcher/thewitcher.cpp +++ b/src/engines/thewitcher/thewitcher.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/engines/thewitcher/thewitcher.h b/src/engines/thewitcher/thewitcher.h index 63a7e64360..4a1c89c5fa 100644 --- a/src/engines/thewitcher/thewitcher.h +++ b/src/engines/thewitcher/thewitcher.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/events.cpp b/src/events/events.cpp index 2f015aafc1..f1e59693ff 100644 --- a/src/events/events.cpp +++ b/src/events/events.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/events.h b/src/events/events.h index dabe26a1df..8ddcd13522 100644 --- a/src/events/events.h +++ b/src/events/events.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/joystick.cpp b/src/events/joystick.cpp index 73a7bf7a4c..a658a91e9f 100644 --- a/src/events/joystick.cpp +++ b/src/events/joystick.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/joystick.h b/src/events/joystick.h index abbfb5ab57..5019416b2c 100644 --- a/src/events/joystick.h +++ b/src/events/joystick.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/notifications.cpp b/src/events/notifications.cpp index fdc83ca983..661a1feb02 100644 --- a/src/events/notifications.cpp +++ b/src/events/notifications.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/notifications.h b/src/events/notifications.h index cb46fe500c..f0da9464f0 100644 --- a/src/events/notifications.h +++ b/src/events/notifications.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/notifyable.h b/src/events/notifyable.h index 83121f4076..a896475c5c 100644 --- a/src/events/notifyable.h +++ b/src/events/notifyable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/requests.cpp b/src/events/requests.cpp index 039722114d..ec51e843a3 100644 --- a/src/events/requests.cpp +++ b/src/events/requests.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/requests.h b/src/events/requests.h index 8a74698081..bff9900835 100644 --- a/src/events/requests.h +++ b/src/events/requests.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/requesttypes.cpp b/src/events/requesttypes.cpp index 94f9cfbb39..c6918ac22b 100644 --- a/src/events/requesttypes.cpp +++ b/src/events/requesttypes.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/requesttypes.h b/src/events/requesttypes.h index 42f298beb0..71181cdcb0 100644 --- a/src/events/requesttypes.h +++ b/src/events/requesttypes.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/timerman.cpp b/src/events/timerman.cpp index 41e3dab0b8..4d5bd4f1c4 100644 --- a/src/events/timerman.cpp +++ b/src/events/timerman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/timerman.h b/src/events/timerman.h index 925b8032d4..dcc50a95c9 100644 --- a/src/events/timerman.h +++ b/src/events/timerman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/events/types.h b/src/events/types.h index afbff202b1..4609d32ff2 100644 --- a/src/events/types.h +++ b/src/events/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/abcfont.cpp b/src/graphics/aurora/abcfont.cpp index a85bfb7240..257595ac97 100644 --- a/src/graphics/aurora/abcfont.cpp +++ b/src/graphics/aurora/abcfont.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/abcfont.h b/src/graphics/aurora/abcfont.h index d7acc7074d..db12fe6040 100644 --- a/src/graphics/aurora/abcfont.h +++ b/src/graphics/aurora/abcfont.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/cube.cpp b/src/graphics/aurora/cube.cpp index 7c4bc88f42..409fab96aa 100644 --- a/src/graphics/aurora/cube.cpp +++ b/src/graphics/aurora/cube.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/cube.h b/src/graphics/aurora/cube.h index cb6cabfcab..ec7ed781d8 100644 --- a/src/graphics/aurora/cube.h +++ b/src/graphics/aurora/cube.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/cursor.cpp b/src/graphics/aurora/cursor.cpp index 7b3cffe379..68217b8499 100644 --- a/src/graphics/aurora/cursor.cpp +++ b/src/graphics/aurora/cursor.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/cursor.h b/src/graphics/aurora/cursor.h index fa2e692fb9..1c1e03d01c 100644 --- a/src/graphics/aurora/cursor.h +++ b/src/graphics/aurora/cursor.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/cursorman.cpp b/src/graphics/aurora/cursorman.cpp index 70859b6160..b5307a1413 100644 --- a/src/graphics/aurora/cursorman.cpp +++ b/src/graphics/aurora/cursorman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/cursorman.h b/src/graphics/aurora/cursorman.h index 107c77d333..84c9a4adce 100644 --- a/src/graphics/aurora/cursorman.h +++ b/src/graphics/aurora/cursorman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/fontman.cpp b/src/graphics/aurora/fontman.cpp index f1c8dca4d8..795f4bdfc2 100644 --- a/src/graphics/aurora/fontman.cpp +++ b/src/graphics/aurora/fontman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -41,7 +41,7 @@ namespace Graphics { namespace Aurora { -const char *kSystemFontMono = "_eosSystemFontMono"; +const char *kSystemFontMono = "_xoreosSystemFontMono"; ManagedFont::ManagedFont(Font *f) { referenceCount = 0; diff --git a/src/graphics/aurora/fontman.h b/src/graphics/aurora/fontman.h index 23a588c233..76c692a5bc 100644 --- a/src/graphics/aurora/fontman.h +++ b/src/graphics/aurora/fontman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/fps.cpp b/src/graphics/aurora/fps.cpp index 7185ade3ab..0d85602833 100644 --- a/src/graphics/aurora/fps.cpp +++ b/src/graphics/aurora/fps.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/fps.h b/src/graphics/aurora/fps.h index 8c6710a2e4..093c5124a2 100644 --- a/src/graphics/aurora/fps.h +++ b/src/graphics/aurora/fps.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/guiquad.cpp b/src/graphics/aurora/guiquad.cpp index 3b9252f4aa..69ff2f8903 100644 --- a/src/graphics/aurora/guiquad.cpp +++ b/src/graphics/aurora/guiquad.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/guiquad.h b/src/graphics/aurora/guiquad.h index 6fed09fd9b..9f414d2e90 100644 --- a/src/graphics/aurora/guiquad.h +++ b/src/graphics/aurora/guiquad.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model.cpp b/src/graphics/aurora/model.cpp index a06ef4068c..af412f86b7 100644 --- a/src/graphics/aurora/model.cpp +++ b/src/graphics/aurora/model.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model.h b/src/graphics/aurora/model.h index fa75e125d1..c49dfb0daf 100644 --- a/src/graphics/aurora/model.h +++ b/src/graphics/aurora/model.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_kotor.cpp b/src/graphics/aurora/model_kotor.cpp index c37a99e2b6..9ea22ae048 100644 --- a/src/graphics/aurora/model_kotor.cpp +++ b/src/graphics/aurora/model_kotor.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_kotor.h b/src/graphics/aurora/model_kotor.h index 093ea9866e..d94ce6c0e5 100644 --- a/src/graphics/aurora/model_kotor.h +++ b/src/graphics/aurora/model_kotor.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_nwn.cpp b/src/graphics/aurora/model_nwn.cpp index 42fafd111f..77413950e7 100644 --- a/src/graphics/aurora/model_nwn.cpp +++ b/src/graphics/aurora/model_nwn.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_nwn.h b/src/graphics/aurora/model_nwn.h index 687ce67dae..8eea6aa833 100644 --- a/src/graphics/aurora/model_nwn.h +++ b/src/graphics/aurora/model_nwn.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_nwn2.cpp b/src/graphics/aurora/model_nwn2.cpp index 13e76b587e..0a68d70c97 100644 --- a/src/graphics/aurora/model_nwn2.cpp +++ b/src/graphics/aurora/model_nwn2.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_nwn2.h b/src/graphics/aurora/model_nwn2.h index 617f5a6764..4bf82ca66f 100644 --- a/src/graphics/aurora/model_nwn2.h +++ b/src/graphics/aurora/model_nwn2.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_witcher.cpp b/src/graphics/aurora/model_witcher.cpp index 1b52b473fd..a266a2befd 100644 --- a/src/graphics/aurora/model_witcher.cpp +++ b/src/graphics/aurora/model_witcher.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/model_witcher.h b/src/graphics/aurora/model_witcher.h index 1d4c0ffe80..c370fafb6a 100644 --- a/src/graphics/aurora/model_witcher.h +++ b/src/graphics/aurora/model_witcher.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/modelnode.cpp b/src/graphics/aurora/modelnode.cpp index f621cb7f65..c011b6a5fc 100644 --- a/src/graphics/aurora/modelnode.cpp +++ b/src/graphics/aurora/modelnode.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/modelnode.h b/src/graphics/aurora/modelnode.h index 3b0c7d8d7f..062af04c46 100644 --- a/src/graphics/aurora/modelnode.h +++ b/src/graphics/aurora/modelnode.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/pltfile.cpp b/src/graphics/aurora/pltfile.cpp index 852a2a20be..fc5c565ee1 100644 --- a/src/graphics/aurora/pltfile.cpp +++ b/src/graphics/aurora/pltfile.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/pltfile.h b/src/graphics/aurora/pltfile.h index 13fbf5962c..6c2c52e32d 100644 --- a/src/graphics/aurora/pltfile.h +++ b/src/graphics/aurora/pltfile.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/text.cpp b/src/graphics/aurora/text.cpp index 032e64f991..14a133d533 100644 --- a/src/graphics/aurora/text.cpp +++ b/src/graphics/aurora/text.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/text.h b/src/graphics/aurora/text.h index 0161459333..c26e5dfd75 100644 --- a/src/graphics/aurora/text.h +++ b/src/graphics/aurora/text.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/texture.cpp b/src/graphics/aurora/texture.cpp index a1083c9f83..c417d72811 100644 --- a/src/graphics/aurora/texture.cpp +++ b/src/graphics/aurora/texture.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/texture.h b/src/graphics/aurora/texture.h index cca2ec183e..3017d526e2 100644 --- a/src/graphics/aurora/texture.h +++ b/src/graphics/aurora/texture.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/texturefont.cpp b/src/graphics/aurora/texturefont.cpp index b11feea71a..6c5a9f7edd 100644 --- a/src/graphics/aurora/texturefont.cpp +++ b/src/graphics/aurora/texturefont.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/texturefont.h b/src/graphics/aurora/texturefont.h index f8d170af20..4dd608cc12 100644 --- a/src/graphics/aurora/texturefont.h +++ b/src/graphics/aurora/texturefont.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/textureman.cpp b/src/graphics/aurora/textureman.cpp index bcce332340..1196d56573 100644 --- a/src/graphics/aurora/textureman.cpp +++ b/src/graphics/aurora/textureman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/textureman.h b/src/graphics/aurora/textureman.h index f2d053ef4d..ce0fa077bd 100644 --- a/src/graphics/aurora/textureman.h +++ b/src/graphics/aurora/textureman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/ttffont.cpp b/src/graphics/aurora/ttffont.cpp index 62811c8ffd..e7edcb8a29 100644 --- a/src/graphics/aurora/ttffont.cpp +++ b/src/graphics/aurora/ttffont.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/ttffont.h b/src/graphics/aurora/ttffont.h index a48505c631..c08a98828a 100644 --- a/src/graphics/aurora/ttffont.h +++ b/src/graphics/aurora/ttffont.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/aurora/types.h b/src/graphics/aurora/types.h index a5bebd2348..1e7dded53f 100644 --- a/src/graphics/aurora/types.h +++ b/src/graphics/aurora/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/camera.cpp b/src/graphics/camera.cpp index b7dd5fb192..5a433309eb 100644 --- a/src/graphics/camera.cpp +++ b/src/graphics/camera.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/camera.h b/src/graphics/camera.h index c6bd7dc41d..8fd369f680 100644 --- a/src/graphics/camera.h +++ b/src/graphics/camera.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/cursor.cpp b/src/graphics/cursor.cpp index 748824c620..68b208a887 100644 --- a/src/graphics/cursor.cpp +++ b/src/graphics/cursor.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/cursor.h b/src/graphics/cursor.h index 81a28c4adc..3cb8dd847d 100644 --- a/src/graphics/cursor.h +++ b/src/graphics/cursor.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/font.cpp b/src/graphics/font.cpp index 002ef093ef..c6d6afd6b1 100644 --- a/src/graphics/font.cpp +++ b/src/graphics/font.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/font.h b/src/graphics/font.h index 32d243379c..28d5cb9087 100644 --- a/src/graphics/font.h +++ b/src/graphics/font.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/fpscounter.cpp b/src/graphics/fpscounter.cpp index 8656bc844a..52ea8a45d8 100644 --- a/src/graphics/fpscounter.cpp +++ b/src/graphics/fpscounter.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/fpscounter.h b/src/graphics/fpscounter.h index ace08f875d..431aeb07c1 100644 --- a/src/graphics/fpscounter.h +++ b/src/graphics/fpscounter.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/glcontainer.cpp b/src/graphics/glcontainer.cpp index 76153fd7e6..58414c334b 100644 --- a/src/graphics/glcontainer.cpp +++ b/src/graphics/glcontainer.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/glcontainer.h b/src/graphics/glcontainer.h index ce4b33e7ec..c56e23cbbe 100644 --- a/src/graphics/glcontainer.h +++ b/src/graphics/glcontainer.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/graphics.cpp b/src/graphics/graphics.cpp index 9af51ea960..887cb9a8a6 100644 --- a/src/graphics/graphics.cpp +++ b/src/graphics/graphics.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -313,7 +313,7 @@ void GraphicsManager::checkGLExtensions() { if (!GLEW_ARB_multitexture) { warning("Your graphics card does no support applying multiple textures onto " "one surface"); - warning("Eos will only use one texture. Certain surfaces may look weird"); + warning("Xoreos will only use one texture. Certain surfaces may look weird"); _supportMultipleTextures = false; } else diff --git a/src/graphics/graphics.h b/src/graphics/graphics.h index e1af829eb8..4876adc5ec 100644 --- a/src/graphics/graphics.h +++ b/src/graphics/graphics.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/guifrontelement.cpp b/src/graphics/guifrontelement.cpp index 56acec08d4..722509925d 100644 --- a/src/graphics/guifrontelement.cpp +++ b/src/graphics/guifrontelement.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/guifrontelement.h b/src/graphics/guifrontelement.h index aae15e5de0..db194753e9 100644 --- a/src/graphics/guifrontelement.h +++ b/src/graphics/guifrontelement.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/dds.cpp b/src/graphics/images/dds.cpp index ad2c0b28f5..04a6608321 100644 --- a/src/graphics/images/dds.cpp +++ b/src/graphics/images/dds.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/dds.h b/src/graphics/images/dds.h index 2754cdfbb6..6ab8df65c1 100644 --- a/src/graphics/images/dds.h +++ b/src/graphics/images/dds.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/decoder.cpp b/src/graphics/images/decoder.cpp index 287b0a85d6..313a93e236 100644 --- a/src/graphics/images/decoder.cpp +++ b/src/graphics/images/decoder.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/decoder.h b/src/graphics/images/decoder.h index 994a083616..36d32e02da 100644 --- a/src/graphics/images/decoder.h +++ b/src/graphics/images/decoder.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/dumptga.cpp b/src/graphics/images/dumptga.cpp index ace723a46f..0e667d5cc0 100644 --- a/src/graphics/images/dumptga.cpp +++ b/src/graphics/images/dumptga.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/dumptga.h b/src/graphics/images/dumptga.h index 0efa9255ff..4c2da3ef9e 100644 --- a/src/graphics/images/dumptga.h +++ b/src/graphics/images/dumptga.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/s3tc.cpp b/src/graphics/images/s3tc.cpp index 85f49dc81f..e3b6755e46 100644 --- a/src/graphics/images/s3tc.cpp +++ b/src/graphics/images/s3tc.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/s3tc.h b/src/graphics/images/s3tc.h index 938914baad..6619eac4ab 100644 --- a/src/graphics/images/s3tc.h +++ b/src/graphics/images/s3tc.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/sbm.cpp b/src/graphics/images/sbm.cpp index 968b194903..f0265b7fac 100644 --- a/src/graphics/images/sbm.cpp +++ b/src/graphics/images/sbm.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/sbm.h b/src/graphics/images/sbm.h index 752937f492..39653184ec 100644 --- a/src/graphics/images/sbm.h +++ b/src/graphics/images/sbm.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/screenshot.cpp b/src/graphics/images/screenshot.cpp index 6236874fc6..78282cca6a 100644 --- a/src/graphics/images/screenshot.cpp +++ b/src/graphics/images/screenshot.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/screenshot.h b/src/graphics/images/screenshot.h index 24d2b77355..a6888d5a60 100644 --- a/src/graphics/images/screenshot.h +++ b/src/graphics/images/screenshot.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/surface.cpp b/src/graphics/images/surface.cpp index 94322fb03a..2aa18b32f2 100644 --- a/src/graphics/images/surface.cpp +++ b/src/graphics/images/surface.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/surface.h b/src/graphics/images/surface.h index 74a79a30b0..a570fc810f 100644 --- a/src/graphics/images/surface.h +++ b/src/graphics/images/surface.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/tga.cpp b/src/graphics/images/tga.cpp index 54c2eab254..4d38c4e14d 100644 --- a/src/graphics/images/tga.cpp +++ b/src/graphics/images/tga.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/tga.h b/src/graphics/images/tga.h index 32a0e97710..cf53af0817 100644 --- a/src/graphics/images/tga.h +++ b/src/graphics/images/tga.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/tpc.cpp b/src/graphics/images/tpc.cpp index 9924889f25..1363c5f905 100644 --- a/src/graphics/images/tpc.cpp +++ b/src/graphics/images/tpc.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/tpc.h b/src/graphics/images/tpc.h index f80a72798c..9947060c18 100644 --- a/src/graphics/images/tpc.h +++ b/src/graphics/images/tpc.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/txb.cpp b/src/graphics/images/txb.cpp index 00b2ccaa89..f881d2f5d8 100644 --- a/src/graphics/images/txb.cpp +++ b/src/graphics/images/txb.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/txb.h b/src/graphics/images/txb.h index b21b20df57..306e99e451 100644 --- a/src/graphics/images/txb.h +++ b/src/graphics/images/txb.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/txi.cpp b/src/graphics/images/txi.cpp index 069c57d73e..15ae9c8044 100644 --- a/src/graphics/images/txi.cpp +++ b/src/graphics/images/txi.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/txi.h b/src/graphics/images/txi.h index 67dcefbc83..d3496e85ec 100644 --- a/src/graphics/images/txi.h +++ b/src/graphics/images/txi.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/txitypes.cpp b/src/graphics/images/txitypes.cpp index 13cd147a4c..4e90f3c9eb 100644 --- a/src/graphics/images/txitypes.cpp +++ b/src/graphics/images/txitypes.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/txitypes.h b/src/graphics/images/txitypes.h index 51cef79d7d..2c1393f51c 100644 --- a/src/graphics/images/txitypes.h +++ b/src/graphics/images/txitypes.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/winiconimage.cpp b/src/graphics/images/winiconimage.cpp index 58d4e07bb8..a16aae9fa9 100644 --- a/src/graphics/images/winiconimage.cpp +++ b/src/graphics/images/winiconimage.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/images/winiconimage.h b/src/graphics/images/winiconimage.h index 6c9c3a0bf9..4a54fcafe6 100644 --- a/src/graphics/images/winiconimage.h +++ b/src/graphics/images/winiconimage.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/object.cpp b/src/graphics/object.cpp index b3b405ba75..2d6185b222 100644 --- a/src/graphics/object.cpp +++ b/src/graphics/object.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/object.h b/src/graphics/object.h index 36b093481d..f71f024745 100644 --- a/src/graphics/object.h +++ b/src/graphics/object.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/queueable.cpp b/src/graphics/queueable.cpp index deb581fe72..4045f9da54 100644 --- a/src/graphics/queueable.cpp +++ b/src/graphics/queueable.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/queueable.h b/src/graphics/queueable.h index 98ea58c2a4..ce01b3d445 100644 --- a/src/graphics/queueable.h +++ b/src/graphics/queueable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/queueman.cpp b/src/graphics/queueman.cpp index 7834f7b716..e5d783b75e 100644 --- a/src/graphics/queueman.cpp +++ b/src/graphics/queueman.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/queueman.h b/src/graphics/queueman.h index 358614789d..5eb8a27cb2 100644 --- a/src/graphics/queueman.h +++ b/src/graphics/queueman.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/renderable.cpp b/src/graphics/renderable.cpp index 356a67c8ef..e4f225ef24 100644 --- a/src/graphics/renderable.cpp +++ b/src/graphics/renderable.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/renderable.h b/src/graphics/renderable.h index 5a9d895eb9..6546fc4573 100644 --- a/src/graphics/renderable.h +++ b/src/graphics/renderable.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/texture.cpp b/src/graphics/texture.cpp index d69f197a19..a36af7471d 100644 --- a/src/graphics/texture.cpp +++ b/src/graphics/texture.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/texture.h b/src/graphics/texture.h index 94e995a026..a230a74a06 100644 --- a/src/graphics/texture.h +++ b/src/graphics/texture.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/ttf.cpp b/src/graphics/ttf.cpp index 44e322e4da..cb06af5ea0 100644 --- a/src/graphics/ttf.cpp +++ b/src/graphics/ttf.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/ttf.h b/src/graphics/ttf.h index 6d644f912d..6811ce28fb 100644 --- a/src/graphics/ttf.h +++ b/src/graphics/ttf.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/types.h b/src/graphics/types.h index 3252c00db6..a02fa5fa29 100644 --- a/src/graphics/types.h +++ b/src/graphics/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/util.h b/src/graphics/util.h index cdc157cbf5..e9c0dd525a 100644 --- a/src/graphics/util.h +++ b/src/graphics/util.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/yuv_to_rgb.cpp b/src/graphics/yuv_to_rgb.cpp index 9f1473658c..fb9962499c 100644 --- a/src/graphics/yuv_to_rgb.cpp +++ b/src/graphics/yuv_to_rgb.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/graphics/yuv_to_rgb.h b/src/graphics/yuv_to_rgb.h index ffe81e0d7b..009c7245f2 100644 --- a/src/graphics/yuv_to_rgb.h +++ b/src/graphics/yuv_to_rgb.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/audiostream.cpp b/src/sound/audiostream.cpp index 6d416a3111..af8ff5c912 100644 --- a/src/sound/audiostream.cpp +++ b/src/sound/audiostream.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/audiostream.h b/src/sound/audiostream.h index a8d084845c..bc20a79ce7 100644 --- a/src/sound/audiostream.h +++ b/src/sound/audiostream.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -39,7 +39,7 @@ namespace Sound { /** * Generic audio input stream. Subclasses of this are used to feed arbitrary - * sampled audio data into eos' SoundManager. + * sampled audio data into xoreos' SoundManager. */ class AudioStream { public: diff --git a/src/sound/decoders/aac.cpp b/src/sound/decoders/aac.cpp index 16e3aff0ad..cc4aa8ceb3 100644 --- a/src/sound/decoders/aac.cpp +++ b/src/sound/decoders/aac.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -108,7 +108,7 @@ AudioStream *AACDecoder::decodeFrame(Common::SeekableReadStream &stream) { byte flags = FLAG_16BITS; -#ifdef EOS_LITTLE_ENDIAN +#ifdef XOREOS_LITTLE_ENDIAN flags |= FLAG_LITTLE_ENDIAN; #endif diff --git a/src/sound/decoders/aac.h b/src/sound/decoders/aac.h index 6bd2bcd131..897f523644 100644 --- a/src/sound/decoders/aac.h +++ b/src/sound/decoders/aac.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/adpcm.cpp b/src/sound/decoders/adpcm.cpp index b34362b2ee..9514957bc4 100644 --- a/src/sound/decoders/adpcm.cpp +++ b/src/sound/decoders/adpcm.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/adpcm.h b/src/sound/decoders/adpcm.h index 0c038ec223..ba000d548c 100644 --- a/src/sound/decoders/adpcm.h +++ b/src/sound/decoders/adpcm.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/asf.cpp b/src/sound/decoders/asf.cpp index 9cea89784f..02cea02ad2 100644 --- a/src/sound/decoders/asf.cpp +++ b/src/sound/decoders/asf.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/asf.h b/src/sound/decoders/asf.h index 0c3bb5ec11..1323c96445 100644 --- a/src/sound/decoders/asf.h +++ b/src/sound/decoders/asf.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/codec.cpp b/src/sound/decoders/codec.cpp index 79995f0c3f..06c45dc703 100644 --- a/src/sound/decoders/codec.cpp +++ b/src/sound/decoders/codec.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/codec.h b/src/sound/decoders/codec.h index f729bcff27..c7b4cb25ac 100644 --- a/src/sound/decoders/codec.h +++ b/src/sound/decoders/codec.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/mp3.cpp b/src/sound/decoders/mp3.cpp index 7668dc3106..9f4e724651 100644 --- a/src/sound/decoders/mp3.cpp +++ b/src/sound/decoders/mp3.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/mp3.h b/src/sound/decoders/mp3.h index dcf4aba4a5..3602bd2cb7 100644 --- a/src/sound/decoders/mp3.h +++ b/src/sound/decoders/mp3.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/pcm.cpp b/src/sound/decoders/pcm.cpp index ef3b08ab95..7fd227a85e 100644 --- a/src/sound/decoders/pcm.cpp +++ b/src/sound/decoders/pcm.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/pcm.h b/src/sound/decoders/pcm.h index b249724486..afc529e33a 100644 --- a/src/sound/decoders/pcm.h +++ b/src/sound/decoders/pcm.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/util.h b/src/sound/decoders/util.h index c3f47956fd..dee66c8292 100644 --- a/src/sound/decoders/util.h +++ b/src/sound/decoders/util.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/vorbis.cpp b/src/sound/decoders/vorbis.cpp index bbbf5b3985..6b30840ebd 100644 --- a/src/sound/decoders/vorbis.cpp +++ b/src/sound/decoders/vorbis.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -164,7 +164,7 @@ bool VorbisStream::refill() { result = ov_read(&_ovFile, read_pos, len_left, 0); #else -#ifdef EOS_BIG_ENDIAN +#ifdef XOREOS_BIG_ENDIAN result = ov_read(&_ovFile, read_pos, len_left, 1, 2, // 16 bit diff --git a/src/sound/decoders/vorbis.h b/src/sound/decoders/vorbis.h index a323466c5e..6950850c18 100644 --- a/src/sound/decoders/vorbis.h +++ b/src/sound/decoders/vorbis.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/wave.cpp b/src/sound/decoders/wave.cpp index d58d5767ba..976d4ebc84 100644 --- a/src/sound/decoders/wave.cpp +++ b/src/sound/decoders/wave.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/wave.h b/src/sound/decoders/wave.h index 2ebc1be0b8..221cb0fa43 100644 --- a/src/sound/decoders/wave.h +++ b/src/sound/decoders/wave.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/wave_types.h b/src/sound/decoders/wave_types.h index 30e2345413..b95468ce8f 100644 --- a/src/sound/decoders/wave_types.h +++ b/src/sound/decoders/wave_types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/wma.cpp b/src/sound/decoders/wma.cpp index c8782e737d..132cc41914 100644 --- a/src/sound/decoders/wma.cpp +++ b/src/sound/decoders/wma.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -101,7 +101,7 @@ WMACodec::WMACodec(int version, uint32 sampleRate, uint8 channels, _audioFlags = FLAG_16BITS; -#ifdef EOS_LITTLE_ENDIAN +#ifdef XOREOS_LITTLE_ENDIAN _audioFlags |= FLAG_LITTLE_ENDIAN; #endif diff --git a/src/sound/decoders/wma.h b/src/sound/decoders/wma.h index 10e48b12c8..e02d0f439c 100644 --- a/src/sound/decoders/wma.h +++ b/src/sound/decoders/wma.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/decoders/wmadata.h b/src/sound/decoders/wmadata.h index 7ccf399e00..958bb8735f 100644 --- a/src/sound/decoders/wmadata.h +++ b/src/sound/decoders/wmadata.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/interleaver.cpp b/src/sound/interleaver.cpp index 49503f1364..3aacf91b1c 100644 --- a/src/sound/interleaver.cpp +++ b/src/sound/interleaver.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/interleaver.h b/src/sound/interleaver.h index 4ebd418b97..9aa6f153fa 100644 --- a/src/sound/interleaver.h +++ b/src/sound/interleaver.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/sound.cpp b/src/sound/sound.cpp index cbb858b4b8..09d98530eb 100644 --- a/src/sound/sound.cpp +++ b/src/sound/sound.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/sound.h b/src/sound/sound.h index 4d59407817..95307d8e10 100644 --- a/src/sound/sound.h +++ b/src/sound/sound.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/sound/types.h b/src/sound/types.h index 72c4dfe17b..aab1dbc4bf 100644 --- a/src/sound/types.h +++ b/src/sound/types.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/actimagine.cpp b/src/video/actimagine.cpp index 50b7249d4a..868026ba04 100644 --- a/src/video/actimagine.cpp +++ b/src/video/actimagine.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/actimagine.h b/src/video/actimagine.h index cadeba30de..f0c93c3dae 100644 --- a/src/video/actimagine.h +++ b/src/video/actimagine.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/aurora/videoplayer.cpp b/src/video/aurora/videoplayer.cpp index cffac019bb..a88dbd2697 100644 --- a/src/video/aurora/videoplayer.cpp +++ b/src/video/aurora/videoplayer.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/aurora/videoplayer.h b/src/video/aurora/videoplayer.h index 9e07b271e3..5cd7c02780 100644 --- a/src/video/aurora/videoplayer.h +++ b/src/video/aurora/videoplayer.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/bink.cpp b/src/video/bink.cpp index 56b7e79962..4b53b25f09 100644 --- a/src/video/bink.cpp +++ b/src/video/bink.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/bink.h b/src/video/bink.h index e8b3d4ed0c..5fbf42dc62 100644 --- a/src/video/bink.h +++ b/src/video/bink.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/binkdata.h b/src/video/binkdata.h index e6e46e3335..62726ca287 100644 --- a/src/video/binkdata.h +++ b/src/video/binkdata.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/codec.cpp b/src/video/codecs/codec.cpp index 12384bef2b..291761c741 100644 --- a/src/video/codecs/codec.cpp +++ b/src/video/codecs/codec.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/codec.h b/src/video/codecs/codec.h index 2b530bcfb1..46a470dd2c 100644 --- a/src/video/codecs/codec.h +++ b/src/video/codecs/codec.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/h263.cpp b/src/video/codecs/h263.cpp index d773ec2ae4..4f2e8c4001 100644 --- a/src/video/codecs/h263.cpp +++ b/src/video/codecs/h263.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/h263.h b/src/video/codecs/h263.h index 98328ca299..8181ab8970 100644 --- a/src/video/codecs/h263.h +++ b/src/video/codecs/h263.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/wmv2data.cpp b/src/video/codecs/wmv2data.cpp index f6a5f07693..085565d507 100644 --- a/src/video/codecs/wmv2data.cpp +++ b/src/video/codecs/wmv2data.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/wmv2data.h b/src/video/codecs/wmv2data.h index f862965ccb..61a2ff886e 100644 --- a/src/video/codecs/wmv2data.h +++ b/src/video/codecs/wmv2data.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/xmvwmv2.cpp b/src/video/codecs/xmvwmv2.cpp index 1ce12a251a..1aaf3f696e 100644 --- a/src/video/codecs/xmvwmv2.cpp +++ b/src/video/codecs/xmvwmv2.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/codecs/xmvwmv2.h b/src/video/codecs/xmvwmv2.h index 3aca0d0eca..8ab1c02053 100644 --- a/src/video/codecs/xmvwmv2.h +++ b/src/video/codecs/xmvwmv2.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/decoder.cpp b/src/video/decoder.cpp index d4f261bc4e..f5fe39f56b 100644 --- a/src/video/decoder.cpp +++ b/src/video/decoder.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -96,7 +96,7 @@ void VideoDecoder::initSound(uint16 rate, int channels, bool is16) { _soundRate = rate; _soundFlags = 0; -#ifdef EOS_LITTLE_ENDIAN +#ifdef XOREOS_LITTLE_ENDIAN _soundFlags |= Sound::FLAG_LITTLE_ENDIAN; #endif diff --git a/src/video/decoder.h b/src/video/decoder.h index ecbd12495c..21997761f1 100644 --- a/src/video/decoder.h +++ b/src/video/decoder.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/fader.cpp b/src/video/fader.cpp index 7adbc9651b..2e32955c47 100644 --- a/src/video/fader.cpp +++ b/src/video/fader.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/fader.h b/src/video/fader.h index cc80f96259..53834e1495 100644 --- a/src/video/fader.h +++ b/src/video/fader.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/quicktime.cpp b/src/video/quicktime.cpp index cef75014b0..9a5481839c 100644 --- a/src/video/quicktime.cpp +++ b/src/video/quicktime.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/quicktime.h b/src/video/quicktime.h index ac5332532d..69f8cd6394 100644 --- a/src/video/quicktime.h +++ b/src/video/quicktime.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/xmv.cpp b/src/video/xmv.cpp index d811e1235a..09992350d5 100644 --- a/src/video/xmv.cpp +++ b/src/video/xmv.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * diff --git a/src/video/xmv.h b/src/video/xmv.h index 4437a1137b..ecebc9d144 100644 --- a/src/video/xmv.h +++ b/src/video/xmv.h @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -65,7 +65,7 @@ class XboxMediaVideo : public VideoDecoder { uint16 bitsPerSample; ///< The number of bits per encoded sample. uint16 flags; ///< Flags. - bool supported; ///< Are these audio track parameters supported by eos? + bool supported; ///< Are these audio track parameters supported by xoreos? bool enabled; ///< Should this audio track be played? byte audioStreamFlags; ///< Flags for the audio stream creation. diff --git a/src/eos.cpp b/src/xoreos.cpp similarity index 97% rename from src/eos.cpp rename to src/xoreos.cpp index a6c411db21..a4cac62c59 100644 --- a/src/eos.cpp +++ b/src/xoreos.cpp @@ -1,6 +1,6 @@ -/* eos - A reimplementation of BioWare's Aurora engine +/* xoreos - A reimplementation of BioWare's Aurora engine * - * eos is the legal property of its developers, whose names can be + * xoreos is the legal property of its developers, whose names can be * found in the AUTHORS file distributed with this source * distribution. * @@ -23,7 +23,7 @@ * The Electron engine, Copyright (c) Obsidian Entertainment and BioWare corp. */ -/** @file eos.cpp +/** @file xoreos.cpp * The project's main entry point. */ diff --git a/utf8cpp/utf8/core.h b/utf8cpp/utf8/core.h index 2de1b08966..0a78d7b374 100644 --- a/utf8cpp/utf8/core.h +++ b/utf8cpp/utf8/core.h @@ -37,7 +37,7 @@ namespace utf8 // The typedefs for 8-bit, 16-bit and 32-bit unsigned integers // You may need to change them to match your system. // These typedefs have the same names as ones from cstdint, or boost/cstdint - // [MODIFIED FOR EOS] + // [MODIFIED FOR XOREOS] typedef uint8 uint8_t; typedef uint16 uint16_t; typedef uint32 uint32_t;