-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Description
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
.
resInfo->csRefreshRate = 60; |
So this should be e.g.
resInfo->csRefreshRate = 60 << 16;
Metadata
Metadata
Assignees
Labels
No labels