pce: aspect ratio

This commit is contained in:
Steven Hugg 2023-11-03 11:00:31 -05:00
parent fc432a3bbf
commit dd96813b76
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class PCEnginePlatform implements Platform {
}
start(): void | Promise<void> {
this.pce = new PCE();
this.video = new RasterVideo(this.mainElement, 684, 262, { overscan: true });
this.video = new RasterVideo(this.mainElement, 684, 262, { overscan: true, aspect: 4 / 3 });
this.video.create();
this.pce.SetCanvas(this.video.canvas);
}