Skip to content

Commit

Permalink
Fix voodoo aspect ratio
Browse files Browse the repository at this point in the history
Was mistakenly set to have 4/3 pixels instead of square pixels (#276)
  • Loading branch information
schellingb committed Jun 25, 2022
1 parent 4010950 commit 4cb161b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hardware/voodoo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6840,7 +6840,7 @@ static void Voodoo_UpdateScreen(void) {
} else
#endif
{
RENDER_SetSize(v->fbi.width, v->fbi.height, 16, 1000.0f / v->draw.vfreq, 4.0/3.0, false, false);
RENDER_SetSize(v->fbi.width, v->fbi.height, 16, 1000.0f / v->draw.vfreq, 1.0, false, false);
}

Voodoo_VerticalTimer(0);
Expand Down

0 comments on commit 4cb161b

Please sign in to comment.