mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
lint
This commit is contained in:
parent
a7aa5ab902
commit
e3bbd2d640
4
js/gl.ts
4
js/gl.ts
@ -694,7 +694,7 @@ export class VideoModesGL implements VideoModes {
|
||||
}
|
||||
|
||||
private defaultMonitor(): screenEmu.DisplayConfiguration {
|
||||
let config = new screenEmu.DisplayConfiguration();
|
||||
const config = new screenEmu.DisplayConfiguration();
|
||||
config.displayResolution = new screenEmu.Size(this.canvas.width, this.canvas.height);
|
||||
config.displayResolution = new screenEmu.Size(this.canvas.width, this.canvas.height);
|
||||
config.displayScanlineLevel = 0.5;
|
||||
@ -708,7 +708,7 @@ export class VideoModesGL implements VideoModes {
|
||||
|
||||
private monitorII(): screenEmu.DisplayConfiguration {
|
||||
// Values taken from openemulator/libemulation/res/library/Monitors/Apple Monitor II.xml
|
||||
let config = new screenEmu.DisplayConfiguration();
|
||||
const config = new screenEmu.DisplayConfiguration();
|
||||
config.displayResolution = new screenEmu.Size(this.canvas.width, this.canvas.height);
|
||||
config.displayResolution = new screenEmu.Size(this.canvas.width, this.canvas.height);
|
||||
config.videoDecoder = 'CANVAS_MONOCHROME';
|
||||
|
Loading…
Reference in New Issue
Block a user