From 9bbe2a772fc9802314875421d8e9923ab5ac9030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D0=B5=D0=BC=D1=91=D0=BD=D0=BE=D0=B2=20=D0=93=D0=B5?= =?UTF-8?q?=D1=80=D0=BC=D0=B0=D0=BD?= Date: Mon, 26 Aug 2024 21:37:56 +0300 Subject: [PATCH] Fixed invalid copy variable AllowHotkey in SiSCopyFromToEntity Signed-off-by: Herman Semenov Part-of: --- src/sis_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sis_driver.c b/src/sis_driver.c index 0a4a552..9ffe994 100644 --- a/src/sis_driver.c +++ b/src/sis_driver.c @@ -4183,7 +4183,7 @@ SISPreInit(ScrnInfoPtr pScrn, int flags) pSiS->useEXA = pSiSEnt->useEXA; pSiS->TurboQueue = pSiSEnt->TurboQueue; pSiS->restorebyset = pSiSEnt->restorebyset; - pSiS->AllowHotkey = pSiS->AllowHotkey; + pSiS->AllowHotkey = pSiSEnt->AllowHotkey; pSiS->OptROMUsage = pSiSEnt->OptROMUsage; pSiS->OptUseOEM = pSiSEnt->OptUseOEM; pSiS->forceCRT1 = pSiSEnt->forceCRT1;