From 311f87dcb459529c57429853a484adc27cfdb524 Mon Sep 17 00:00:00 2001 From: Sjoerd van der Berg Date: Sun, 20 Oct 2002 10:44:31 +0000 Subject: [PATCH] Changed the counter for the cpu decoder to a signed integer and changed the cpu_cycle counter Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@386 --- include/cpu.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/cpu.h b/include/cpu.h index 17127132..ca649584 100644 --- a/include/cpu.h +++ b/include/cpu.h @@ -25,9 +25,9 @@ /* Some common Defines */ /* A CPU Handler */ -typedef Bitu (CPU_Decoder)(Bitu count); +typedef Bitu (CPU_Decoder)(Bits count); extern CPU_Decoder * cpudecoder; -extern Bit32u cpu_cycles; +extern Bitu cpu_cycles; //CPU Stuff void SetCPU16bit();