You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Mac OS 9.2.x' Monitors control panel shows all modes as 0 Hz.
Judging by what macemu does with it, the csRefreshRate field in VDResolutionInfoRec is supposed to be 16.16 fixed point. As a hint, its type is a typedef of UInt32 called Fixed.
As reported in qemu/QemuMacDrivers#1 by @rakslice
the monitor refresh rate is incorrectly being reported as 0Hz rather than 60Hz
since the resInfo->csRefreshRate field is not an integer but actually 16.16
fixed point.
Signed-off-by: Mark Cave-Ayland <[email protected]>
@rakslice thanks for the heads-up, and sorry for the delay. This is actually the QEMU (local) mirror of the original repository at https://github.com/ozbenh/QemuMacDrivers which is why no-one is really monitoring it.
Mac OS 9.2.x' Monitors control panel shows all modes as 0 Hz.
Judging by what macemu does with it, the
csRefreshRate
field inVDResolutionInfoRec
is supposed to be 16.16 fixed point. As a hint, its type is atypedef
ofUInt32
calledFixed
.QemuMacDrivers/QemuVGADriver/src/DriverQDCalls.c
Line 547 in 90c488d
So this should be e.g.
The text was updated successfully, but these errors were encountered: