From c61b9739681ccc5153a931f7cc94f7e1c2f8d93c Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Sun, 17 Jan 2021 02:39:22 -0500
Subject: [PATCH] vulkan_debug_callback: Add missing header guard

Prevents inclusion issues from occurring.
---
 src/video_core/vulkan_common/vulkan_debug_callback.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/video_core/vulkan_common/vulkan_debug_callback.h b/src/video_core/vulkan_common/vulkan_debug_callback.h
index 2efcd244c..b0519f132 100644
--- a/src/video_core/vulkan_common/vulkan_debug_callback.h
+++ b/src/video_core/vulkan_common/vulkan_debug_callback.h
@@ -2,6 +2,8 @@
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 
+#pragma once
+
 #include "video_core/vulkan_common/vulkan_wrapper.h"
 
 namespace Vulkan {