From f3a3df90e25cc521c622df2ab838bff75d89202e Mon Sep 17 00:00:00 2001 From: Stephen Miller Date: Mon, 21 Apr 2025 15:22:50 -0500 Subject: [PATCH] Log ioctls --- src/core/devices/gc_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/devices/gc_device.cpp b/src/core/devices/gc_device.cpp index 3f4079fa9..684f414b1 100644 --- a/src/core/devices/gc_device.cpp +++ b/src/core/devices/gc_device.cpp @@ -12,7 +12,7 @@ std::shared_ptr GcDevice::Create(u32 handle, const char*, int, u16) } int GcDevice::ioctl(u64 cmd, Common::VaCtx* args) { - LOG_ERROR(Kernel_Pthread, "(STUBBED) called"); + LOG_ERROR(Kernel_Pthread, "(STUBBED) cmd = {:#x} called", cmd); return 0; }