From 50c07833e4c4e6c1d6c2a507fab2f68279588a73 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Wed, 12 Dec 2018 14:40:11 +0300 Subject: [PATCH] rsx: Do not force upload for missing data - TODO: Finish implementing GPU RCB for mem-sync - TODO: Refactor mem-sync --- rpcs3/Emu/RSX/Common/surface_store.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/Common/surface_store.h b/rpcs3/Emu/RSX/Common/surface_store.h index 57bd417e6..c5f4015e9 100644 --- a/rpcs3/Emu/RSX/Common/surface_store.h +++ b/rpcs3/Emu/RSX/Common/surface_store.h @@ -132,8 +132,8 @@ namespace rsx if (needs_tagging && dirty) { // TODO - LOG_ERROR(RSX, "Resource used before memory initialization"); - return false; + // Should RCB or mem-sync (inherit previous mem) to init memory + LOG_TODO(RSX, "Resource used before memory initialization"); } auto ptr = vm::get_super_ptr>(tag_address);