From c918f395b912da96e2ec9f7cf7cad23938c40deb Mon Sep 17 00:00:00 2001 From: Eladash Date: Tue, 8 Jun 2021 19:12:54 +0300 Subject: [PATCH] Make rsx::simple_array compatible with serialization --- rpcs3/Emu/RSX/rsx_utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Emu/RSX/rsx_utils.h b/rpcs3/Emu/RSX/rsx_utils.h index 4675ff810f..120a5aab89 100644 --- a/rpcs3/Emu/RSX/rsx_utils.h +++ b/rpcs3/Emu/RSX/rsx_utils.h @@ -952,6 +952,7 @@ namespace rsx public: using iterator = Ty*; using const_iterator = const Ty*; + using value_type = Ty; private: u32 _capacity = 0;