From d04b892423f6753c369fb1a8df641d39d04952bf Mon Sep 17 00:00:00 2001 From: notaz Date: Sat, 15 Oct 2022 00:37:43 +0300 Subject: [PATCH] gpulib: update gpuinfo according to nocash --- plugins/gpulib/gpu.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plugins/gpulib/gpu.c b/plugins/gpulib/gpu.c index bef297fb..32a797d5 100644 --- a/plugins/gpulib/gpu.c +++ b/plugins/gpulib/gpu.c @@ -126,17 +126,16 @@ static noinline void get_gpu_info(uint32_t data) case 0x02: case 0x03: case 0x04: - case 0x05: gpu.gp0 = gpu.ex_regs[data & 7] & 0xfffff; break; - case 0x06: - gpu.gp0 = gpu.ex_regs[5] & 0xfffff; + case 0x05: + gpu.gp0 = gpu.ex_regs[5] & 0x3fffff; break; case 0x07: gpu.gp0 = 2; break; default: - gpu.gp0 = 0; + // gpu.gp0 unchanged break; } } -- 2.39.2