kinggori
20-02-2007 09:17:36
Hello once again guys
The link errors I used to get are fiixed and now I'm 1 step closer to hearing sound from the game!
now I'm get a runtime error. I ran in debug mode to figure out what's going on and I get the error:
The error seams to have to do with ogrealsoundmanager.cpp
For your info to he I added the following OgreAL related code into my program:
First thing under int main I put:
The link errors I used to get are fiixed and now I'm 1 step closer to hearing sound from the game!
now I'm get a runtime error. I ran in debug mode to figure out what's going on and I get the error:
Assertion failed!
Program: c:\mydev\LIAV\bin\Debug\LIAV_864.exe
File c:\gamedec\864\ogrenew\ogremain\...\ogrelo...ger.cpp
Line40
Expresion: ms_Singleton
The error seams to have to do with ogrealsoundmanager.cpp
Ogre::LogManager::getSingleton().logMessage("*-*-* OgreAL Initialization");
For your info to he I added the following OgreAL related code into my program:
First thing under int main I put:
OgreAL::SoundManager *soundManager;
soundManager = new OgreAL::SoundManager();
OgreAL::Sound *bgSound = soundManager->createSound("FinalDuel", "roar.wav", true);
bgSound->setRelativeToListener(true);
bgSound->play();