diff options
author | George Sapountzis <gsap7@yahoo.gr> | 2006-11-20 15:09:41 +0200 |
---|---|---|
committer | George Sapountzis <gsap7@yahoo.gr> | 2007-01-28 01:24:21 +0200 |
commit | c9a9ea5ebd1c27881c1fac19842cfa3af55c126e (patch) | |
tree | 932242627308bbefcf8ee59cde16a512eecd5f97 /src/ativga.c | |
parent | 383e963e275d351ea3631c352f5795340162d69f (diff) |
Banked memory is no longer needed.
- (pATI->BankInfo.BankSize = 0) in all cases, cull pATI->BankInfo
- only keep the minimal pATIHW.SetBank interface for save/restore
- clean ATISwap() a little, (NewHW.crtc != ATI_CRTC_VGA)
- (UseSmallApertures == TRUE) <=> pATI->VGAAdapter
Diffstat (limited to 'src/ativga.c')
-rw-r--r-- | src/ativga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ativga.c b/src/ativga.c index 391ea72..8f4b0da 100644 --- a/src/ativga.c +++ b/src/ativga.c @@ -74,7 +74,7 @@ ATIVGAPreInit /* Initialise graphics controller register values */ if (pATI->Chip >= ATI_CHIP_264CT) pATIHW->gra[5] = 0x40U; - if (pATI->UseSmallApertures && (pATI->Chip >= ATI_CHIP_264VT)) + if (pATI->Chip >= ATI_CHIP_264VT) pATIHW->gra[6] = 0x01U; /* 128kB aperture */ else pATIHW->gra[6] = 0x05U; /* 64kB aperture */ |