diff options
| author | Mike Stroyan <mike@LunarG.com> | 2015-08-10 16:14:18 -0600 |
|---|---|---|
| committer | Mike Stroyan <mike@LunarG.com> | 2015-08-14 10:50:42 -0600 |
| commit | 30b980808b8d7906b25502633814e9c7dfe4ac7b (patch) | |
| tree | a573026af03933dc6747857a7f032f1dc20ae2c2 | |
| parent | 973fb91ff27a48758f7d265f7f2a21daae702730 (diff) | |
| download | usermoji-30b980808b8d7906b25502633814e9c7dfe4ac7b.tar.xz | |
layers: Remove active flags with removed callbacks
layer_destroy_msg_callback was including flags from just removed callbacks.
| -rw-r--r-- | layers/vk_layer_logging.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layers/vk_layer_logging.h b/layers/vk_layer_logging.h index bb3087dd..94940185 100644 --- a/layers/vk_layer_logging.h +++ b/layers/vk_layer_logging.h @@ -194,8 +194,8 @@ static inline void layer_destroy_msg_callback( "Destroyed callback"); } else { matched = false; + debug_data->active_flags |= pTrav->msgFlags; } - debug_data->active_flags |= pTrav->msgFlags; pPrev = pTrav; pTrav = pTrav->pNext; if (matched) { |
