This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Alc/ALc.c b/Alc/ALc.c | |
index baf7f01..586cfb7 100644 | |
--- a/Alc/ALc.c | |
+++ b/Alc/ALc.c | |
@@ -2221,6 +2221,8 @@ static ALCvoid FreeDevice(ALCdevice *device) | |
al_free(device->DryBuffer); | |
device->DryBuffer = NULL; | |
+ DestroyRingBuffer(device->loopback_ring); | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tox dns3 standard. | |
Encrypted Tox dns requests and responses. | |
request: | |
[4 byte nonce][temporary client public key][encrypted with crypto_box(temporary client public key, server long term public key, 4 byte nonce + 20 byte zeros)[queried username]] | |
-> base32 (a to z, 0 to 5) -> separate with . as needed. | |
Notes: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#You need mingw with gcc version 4.7 or higher because ProjectTox-Qt-GUI uses C++11 | |
#change WINDOWS_TOOLCHAIN from i686-w64-mingw32 to whatever your toolchain is. | |
WINDOWS_TOOLCHAIN=i686-w64-mingw32 | |
mkdir prefix | |
cd prefix | |
PREFIX_DIR=$(pwd) | |
cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Note: This only works with mingw 3.0 or later (previous versions don't have pthreads) | |
#You need mingw 3.0 or later, yasm and cmake | |
# | |
#If you use something other than mingw-w64-i686 you must modify the script accordingly | |
# | |
#If you are on ubuntu 13.10: | |
#sudo apt-get install gcc-mingw-w64-i686 yasm cmake | |
mkdir prefix |