kcat
kcat
If the game's source isn't available, I'd need to get more detailed traces about what calls it's making. The description makes it seem like perhaps the spell effects are being...
You would have to modify OpenAL Soft and put `TRACE("...")` statements at the start of the more common functions (`alSourcePlay`/`Stop`/`Rewind`, `alSourceQueueBuffers`, `alSourceUnqueueBuffers`, and `alGetSource*` to trace their parameters, and also...
Given that it works with r422, which was made Nov 1st 2021, and not the latest version, and it doesn't use EAX, there's only a couple commits that could've really...
> Speaking of the number of sources specifically instead, I remembered #28 ([here](https://stackoverflow.com/questions/2871905/openal-determine-maximum-sources#comment3487772_3203888) they pitch 1024 to be the magic amount?) That seems to be referring to the number of...
Commit e7bc895cbaaab466d09047710317774929e178c2 increases the number of software buffers (to 384), which should help with this case.
Did you update your compiler recently? The first error seems to be a result of the compiler's own headers using a function without including the right header, and the second...
What errors did you get, and what did you have to change to get it to build? I currently have MinGW-w64 with GCC 10.2.1 here (Linux, not MSYS2), and it...
Looks like a problem with the compiler installation. ``` C:/msys64/ucrt64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:/msys64/ucrt64/bin/../lib/gcc/x86_64-w64-mingw32/11.2.0/../../../../x86_64-w64-mingw32/lib/../lib/libmsvcrt.a(libapi-ms-win-crt-math-l1-1-0s00277.o):(.text+0x0): multiple definition of `round'; C:/msys64/usr/lib/libm.a(t-d001260.o):fake:(.text+0x0): first defined here ``` It's complaining about `round` being defined in both `libm` and...
Hi. Generally speaking, as long as OpenAL Soft is unmodified and distributed as a shared library, you can use it in any project you wish. Unless your code is also...
I do plan on restructuring the library so that I can relicense parts of it that I know are mine, and rewrite what's left over. It will probably take a...