Skip to content

VGA driver reporting silly refresh rates #1

@rakslice

Description

@rakslice

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

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions