From 9fd16a93c576976e1591be4cf80e9b9a614aa02d Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 6 Jun 2021 19:02:07 +0200 Subject: [PATCH] NetPlay: Sync the EFB access tile size as an integer instead of a boolean. --- Source/Core/Core/NetPlayProto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/NetPlayProto.h b/Source/Core/Core/NetPlayProto.h index fc45af5d83..8983fe809a 100644 --- a/Source/Core/Core/NetPlayProto.h +++ b/Source/Core/Core/NetPlayProto.h @@ -87,7 +87,7 @@ struct NetSettings float m_ArbitraryMipmapDetectionThreshold; bool m_EnableGPUTextureDecoding; bool m_DeferEFBCopies; - bool m_EFBAccessTileSize; + int m_EFBAccessTileSize; bool m_EFBAccessDeferInvalidation; bool m_StrictSettingsSync;