mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
protect under HAVE_AUDIO
This commit is contained in:
parent
b6dfe5d6c8
commit
af847d758e
@ -103,8 +103,10 @@ PGItem(const PGItem ©) :
|
|||||||
_has_frame(copy._has_frame),
|
_has_frame(copy._has_frame),
|
||||||
_frame(copy._frame),
|
_frame(copy._frame),
|
||||||
_state(copy._state),
|
_state(copy._state),
|
||||||
_flags(copy._flags),
|
_flags(copy._flags)
|
||||||
_sounds(copy._sounds)
|
#ifdef HAVE_AUDIO
|
||||||
|
, _sounds(copy._sounds)
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
_notify = NULL;
|
_notify = NULL;
|
||||||
_region = new PGMouseWatcherRegion(this);
|
_region = new PGMouseWatcherRegion(this);
|
||||||
|
@ -25,13 +25,16 @@
|
|||||||
#include "nodePath.h"
|
#include "nodePath.h"
|
||||||
#include "luse.h"
|
#include "luse.h"
|
||||||
#include "pointerTo.h"
|
#include "pointerTo.h"
|
||||||
#include "audioSound.h"
|
|
||||||
#include "textNode.h"
|
#include "textNode.h"
|
||||||
#include "plane.h"
|
#include "plane.h"
|
||||||
#include "pmap.h"
|
#include "pmap.h"
|
||||||
#include "lightReMutex.h"
|
#include "lightReMutex.h"
|
||||||
#include "lightReMutexHolder.h"
|
#include "lightReMutexHolder.h"
|
||||||
|
|
||||||
|
#ifdef HAVE_AUDIO
|
||||||
|
#include "audioSound.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
class PGTop;
|
class PGTop;
|
||||||
class MouseWatcherParameter;
|
class MouseWatcherParameter;
|
||||||
class AudioSound;
|
class AudioSound;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user