From 3e80727f8eef5e0898664c0584cf7f99b00de674 Mon Sep 17 00:00:00 2001 From: Eladash Date: Mon, 30 Dec 2019 19:40:38 +0200 Subject: [PATCH] Allow unimplemented HLE functions detection by bot --- rpcs3/Emu/Cell/PPUModule.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/PPUModule.h b/rpcs3/Emu/Cell/PPUModule.h index 6af7b81ec6..8a6e2b572d 100644 --- a/rpcs3/Emu/Cell/PPUModule.h +++ b/rpcs3/Emu/Cell/PPUModule.h @@ -293,4 +293,4 @@ inline RT ppu_execute(ppu_thread& ppu, Args... args) #define REG_VAR(module, var) REG_VNID(module, #var, var) -#define UNIMPLEMENTED_FUNC(module) module.todo("%s", __func__) +#define UNIMPLEMENTED_FUNC(module) module.todo("%s()", __func__)