1
0
Fork 0

TCAS clean-up.

Change default voice samples.
This commit is contained in:
ThorstenB 2011-02-25 21:10:42 +01:00
parent f6b9c5b908
commit 645ef8036a
2 changed files with 1 additions and 30 deletions

View file

@ -238,7 +238,7 @@ void TCAS::Annunciator::clear(void)
void
TCAS::Annunciator::bind(SGPropertyNode* node)
{
voicePlayer.bind(node, "Sounds/tcas/");
voicePlayer.bind(node, "Sounds/tcas/female/");
}
void

View file

@ -147,35 +147,6 @@ class TCAS : public SGSubsystem
float verticalFps;
} LocalInfo; /*< info structure for local aircraft */
// /////////////////////////////////////////////////////////////////////////////
// // TCAS::Timer //////////////////////////////////////////////////////////////
// /////////////////////////////////////////////////////////////////////////////
//
// class Timer
// {
// double start_time;
//
// public:
// bool running;
//
// inline Timer ()
// : running(false) {}
//
// inline void start () { running = true; start_time = globals->get_sim_time_sec(); }
// inline void stop () { running = false; }
// inline double elapsed () const { assert(running); return globals->get_sim_time_sec() - start_time; }
// inline double start_or_elapsed ()
// {
// if (running)
// return elapsed();
// else
// {
// start();
// return 0;
// }
// }
// };
/////////////////////////////////////////////////////////////////////////////
// TCAS::PropertiesHandler ///////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////