mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-30 12:40:42 +00:00
Nuke some dprintfs
This commit is contained in:
parent
0ba2481632
commit
6eaa5518a4
1 changed files with 2 additions and 2 deletions
|
@ -75,13 +75,13 @@ void
|
||||||
GIB_Tree_Ref (gib_tree_t ** tp)
|
GIB_Tree_Ref (gib_tree_t ** tp)
|
||||||
{
|
{
|
||||||
(*tp)->refs++;
|
(*tp)->refs++;
|
||||||
Sys_DPrintf ("Ref: %p %u\n", *tp, (*tp)->refs);
|
// Sys_DPrintf ("Ref: %p %u\n", *tp, (*tp)->refs);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
GIB_Tree_Unref (gib_tree_t ** tp)
|
GIB_Tree_Unref (gib_tree_t ** tp)
|
||||||
{
|
{
|
||||||
Sys_DPrintf ("Unref: %p %u\n", *tp, (*tp)->refs - 1);
|
// Sys_DPrintf ("Unref: %p %u\n", *tp, (*tp)->refs - 1);
|
||||||
if (!(--(*tp)->refs)) {
|
if (!(--(*tp)->refs)) {
|
||||||
GIB_Tree_Free_Recursive (*tp);
|
GIB_Tree_Free_Recursive (*tp);
|
||||||
*tp = 0;
|
*tp = 0;
|
||||||
|
|
Loading…
Reference in a new issue