1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-09 06:51:44 +00:00
freebsd-ports/games/cake/files/patch-cake::entity.cpp
Kirill Ponomarev 52966b2faf Add cake 2004.07.09,
Cake is pretty advanced Quake III Arena map viewer.  It
features BSP support, multiple viewports, sound, models,
record/playback demo support and plenty more.  Right now, sound
support is disabled since cake uses FMOD library which is not
available on FreeBSD.  I hope to resolve this issue in the
future though.

PR:		ports/69738
Submitted by:	Alexey Dokuchaev <danfe@regency.nsu.ru>
2004-07-30 09:59:21 +00:00

16 lines
535 B
C++

--- cake/entity.cpp.orig Fri Jul 16 16:55:56 2004
+++ cake/entity.cpp Fri Jul 16 16:56:20 2004
@@ -1534,10 +1534,10 @@
break;
case ET_TARGET_TELEPORTER:
case ET_TRIGGER_TELEPORT:
- noise_index = loadSound("sound/world/telein.wav", false, false);
+ noise_index = loadSound("sound/world/telein.wav", NULL, false);
break;
case ET_TRIGGER_PUSH:
- noise_index = loadSound("sound/world/jumppad.wav", false, false);
+ noise_index = loadSound("sound/world/jumppad.wav", NULL, false);
break;
default:
break;