OSDN Git Service

Added FMOD copyright
authorryan <>
Wed, 5 Jan 2011 20:42:56 +0000 (20:42 +0000)
committerryan <>
Wed, 5 Jan 2011 20:42:56 +0000 (20:42 +0000)
readme.txt
src/frontend/skyscraper.cpp

index e1d01a2..24b5204 100644 (file)
@@ -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
index 00bb101..e888ead 100644 (file)
@@ -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;
 }