From: ryan <> Date: Wed, 5 Jan 2011 20:42:56 +0000 (+0000) Subject: Added FMOD copyright X-Git-Url: http://git.sourceforge.jp/view?a=commitdiff_plain;h=02c051f9d9223a31606e01e56fc90d2f9d03a312;p=skyscrapersim%2Fskyscraper.git Added FMOD copyright --- diff --git a/readme.txt b/readme.txt index e1d01a2d..24b5204f 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ http://www.skyscrapersim.com http://sourceforge.net/projects/skyscraper Contents -1. Legal Notice +1. Legal Notices 2. Introduction 3. Release Notes 4. Building and Installing @@ -14,7 +14,7 @@ Contents ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -1. Legal Notice +1. Legal Notices This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License @@ -32,6 +32,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. For more information, see the LICENSE file. +This software utilizes the FMOD sound system +FMOD Sound System, copyright (C) Firelight Technologies Pty, Ltd., 1994-2010. + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2. Introduction diff --git a/src/frontend/skyscraper.cpp b/src/frontend/skyscraper.cpp index 00bb101d..e888ead4 100644 --- a/src/frontend/skyscraper.cpp +++ b/src/frontend/skyscraper.cpp @@ -379,18 +379,21 @@ bool Skyscraper::Initialize() Ogre::MaterialManager::getSingleton().setDefaultAnisotropy(maxanisotropy); //initialize FMOD (sound) + Report("\nFMOD Sound System, copyright © Firelight Technologies Pty, Ltd., 1994-2010"); + FMOD_RESULT result = FMOD::System_Create(&soundsys); if (result != FMOD_OK) { - printf("Error initializing FMOD\n"); + printf("Error initializing sound\n"); return false; } result = soundsys->init(100, FMOD_INIT_NORMAL, 0); if (result != FMOD_OK) { - printf("Error initializing FMOD\n"); + printf("Error initializing sound\n"); return false; } + Report("Sound initialized"); return true; }