From d93b137b852fd737bb648af9704ece9926fc7a91 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 16 Sep 2023 15:05:46 +1000 Subject: [PATCH] GS: Remove unnecessary #pragma pack in GSVector This was leaking into included headers. --- pcsx2/GS/GSVector.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/pcsx2/GS/GSVector.h b/pcsx2/GS/GSVector.h index a208dbcde7..1ce040ed12 100644 --- a/pcsx2/GS/GSVector.h +++ b/pcsx2/GS/GSVector.h @@ -49,8 +49,6 @@ enum Round_Mode Round_Truncate = 11 }; -#pragma pack(push, 1) - template class GSVector2T { @@ -252,4 +250,3 @@ gsforceinline GSVector8 GSVector8::cast(const GSVector8i& v) #endif -#pragma pack(pop)