1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Fix samples order on save, not load.

Sorting samples during load was a major mistake, as three different background
processing threads were concurrently accessing the samples table, and it was
being sorted in one of them!
This commit is contained in:
Bartosz Taudul
2021-11-13 03:23:43 +01:00
parent 0ab73e2aa7
commit 81c66ad126
2 changed files with 17 additions and 3 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ namespace Version
{
enum { Major = 0 };
enum { Minor = 7 };
enum { Patch = 12 };
enum { Patch = 13 };
}
}