From 059305a6bfb7fdc48ac5a78dadc1a0e1b8b98cc3 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Tue, 21 Jul 2020 00:42:17 -0400
Subject: [PATCH] compatible_formats: Add missing header guard

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

diff --git a/src/video_core/compatible_formats.h b/src/video_core/compatible_formats.h
index d1082566d3..51766349b0 100644
--- a/src/video_core/compatible_formats.h
+++ b/src/video_core/compatible_formats.h
@@ -2,6 +2,8 @@
 // Licensed under GPLv2 or any later version
 // Refer to the license.txt file included.
 
+#pragma once
+
 #include <array>
 #include <bitset>
 #include <cstddef>