mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 08:04:01 +02:00
inline the shouldEchoAudio
This commit is contained in:
parent
a5a30efec9
commit
b6a0662c98
2 changed files with 2 additions and 6 deletions
|
@ -217,10 +217,6 @@ Application::Application(int& argc, char** argv, timeval &startup_time) :
|
|||
// initialization continues in initializeGL when OpenGL context is ready
|
||||
}
|
||||
|
||||
bool Application::shouldEchoAudio() {
|
||||
return _echoAudioMode->isChecked();
|
||||
}
|
||||
|
||||
void Application::initializeGL() {
|
||||
printLog( "Created Display Window.\n" );
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
#include <time.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QAction>
|
||||
|
||||
#include <AgentList.h>
|
||||
|
||||
|
@ -61,11 +62,10 @@ public:
|
|||
|
||||
void wheelEvent(QWheelEvent* event);
|
||||
|
||||
bool shouldEchoAudio();
|
||||
|
||||
Avatar* getAvatar() { return &_myAvatar; }
|
||||
VoxelSystem* getVoxels() { return &_voxels; }
|
||||
Environment* getEnvironment() { return &_environment; }
|
||||
bool shouldEchoAudio() { return _echoAudioMode->isChecked(); }
|
||||
|
||||
private slots:
|
||||
|
||||
|
|
Loading…
Reference in a new issue