From d50d0326c62184b3340c5bb6fc9ec3ccf903413c Mon Sep 17 00:00:00 2001 From: Jasmine Iwanek Date: Fri, 23 Jun 2023 12:47:30 -0400 Subject: [PATCH] Fix for higher CPU clock speeds --- src/cpu/cpu.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu/cpu.h b/src/cpu/cpu.h index 6badc4b30..d60d7159f 100644 --- a/src/cpu/cpu.h +++ b/src/cpu/cpu.h @@ -143,7 +143,7 @@ typedef struct { const char *name; uint64_t cpu_type; const FPU *fpus; - int rspeed; + uint32_t rspeed; double multi; uint16_t voltage; uint32_t edx_reset;