From 253571fd35bcb0c4b5e63f1f25c824947b05daa2 Mon Sep 17 00:00:00 2001 From: Ziemas Date: Tue, 7 Sep 2021 12:15:15 +0200 Subject: [PATCH] Delete unused vol_t type --- common/Pcsx2Types.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/common/Pcsx2Types.h b/common/Pcsx2Types.h index bb8387f35a..91bdf5f884 100644 --- a/common/Pcsx2Types.h +++ b/common/Pcsx2Types.h @@ -145,14 +145,3 @@ struct s128 return (lo != right.lo) || (hi != right.hi); } }; - -// On linux sizes of long depends on the architecture (4B/x86 vs 86/amd64) -// Windows compiler requires int/long type for _InterlockedExchange* function. -// The best would be to port all _InterlockedExchange function to use -// Theading::Atomic* function. Unfortunately Win version is not happy, until -// code is properly fixed let's use a basic type alias. -#ifdef _WIN32 -using vol_t = long; -#else -using vol_t = s32; -#endif