From 9f4a21d1ae0d7b2488868fd81effc318871672db Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Tue, 13 Sep 2022 14:32:16 +0200 Subject: [PATCH] Fix build with -DENABLE_PC_LOG=1 Global "AT" is not there since commit bc90f993503f ('Finally got rid of the AT and PCI global variables.'). --- src/86box.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/86box.c b/src/86box.c index e96506c92..19465a17f 100644 --- a/src/86box.c +++ b/src/86box.c @@ -761,7 +761,7 @@ void pc_full_speed(void) { if (!atfullspeed) { - pc_log("Set fullspeed - %i %i\n", is386, AT); + pc_log("Set fullspeed - %i %i\n", is386, is486); pc_speed_changed(); } atfullspeed = 1;