Skip to content

Commit

Permalink
PCE: Fixed hud scale for HES player
Browse files Browse the repository at this point in the history
  • Loading branch information
SourMesen committed Apr 1, 2024
1 parent b4369c9 commit 7f4ba93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Core/PCE/PceDefaultVideoFilter.h
Expand Up @@ -37,7 +37,9 @@ class PceDefaultVideoFilter : public BaseVideoFilter

HudScaleFactors GetScaleFactor() override
{
if(_frameDivider == 0) {
if(_emu->GetRomInfo().Format == RomFormat::PceHes) {
return { 1, 1 };
} else if(_frameDivider == 0) {
return { PceConstants::InternalResMultipler, PceConstants::InternalResMultipler };
} else {
return { (double)4 / _frameDivider, 1 };
Expand Down

0 comments on commit 7f4ba93

Please sign in to comment.