[Opentnl-cvs] tnl/zap Makefile,1.5,1.6 sfx.cpp,1.16,1.17
Brought to you by:
mark_frohnmayer,
s_alanet
From: Mark F. <mar...@us...> - 2004-05-08 00:26:43
|
Update of /cvsroot/opentnl/tnl/zap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5971/zap Modified Files: Makefile sfx.cpp Log Message: Moved function in sfx so not undefined Updated makefiles for linux Index: Makefile =================================================================== RCS file: /cvsroot/opentnl/tnl/zap/Makefile,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Makefile 3 May 2004 23:03:38 -0000 1.5 --- Makefile 8 May 2004 00:26:31 -0000 1.6 *************** *** 36,39 **** --- 36,41 ---- teleporter.o\ barrier.o\ + lpc10dec.o\ + lpc10enc.o\ main.o *************** *** 41,44 **** --- 43,49 ---- CFLAGS= + .c.o: + $(CC) -c $(CFLAGS) $< + .cpp.o : $(CC) -c $(CFLAGS) $< Index: sfx.cpp =================================================================== RCS file: /cvsroot/opentnl/tnl/zap/sfx.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** sfx.cpp 8 May 2004 00:18:07 -0000 1.16 --- sfx.cpp 8 May 2004 00:26:32 -0000 1.17 *************** *** 47,55 **** static U32 lastReadOffset = 0; - void SFXObject::setCaptureGain(S32 amt) - { - mCaptureGain = amt; - } - bool SFXObject::startRecording() { --- 47,50 ---- *************** *** 227,230 **** --- 222,230 ---- static Vector<SFXHandle> gPlayList; + void SFXObject::setCaptureGain(S32 amt) + { + mCaptureGain = amt; + } + SFXObject::SFXObject(U32 profileIndex, ByteBufferPtr ib, F32 gain, Point position, Point velocity) { |