Skip to content

Commit aca41d0

Browse files
Update emulator.js
1 parent c141509 commit aca41d0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

data/src/emulator.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7140,7 +7140,8 @@ class EmulatorJS {
71407140
this.getSettingValue("screenshotSource") ||
71417141
this.capture.photo.source;
71427142
const videoRotation = parseInt(this.getSettingValue("videoRotation") || 0);
7143-
const aspectRatio = this.gameManager.getVideoDimensions("aspect") || 1.333333;
7143+
const aspectRatio =
7144+
this.gameManager.getVideoDimensions("aspect") || 1.333333;
71447145
const gameHeight = this.gameManager.getVideoDimensions("height") || 224;
71457146
const videoTurned = videoRotation === 1 || videoRotation === 3;
71467147
let width = this.canvas.width;
@@ -7314,7 +7315,8 @@ class EmulatorJS {
73147315
const captureAudioBitrate =
73157316
this.getSettingValue("screenRecordAudioBitrate") ||
73167317
this.capture.video.audioBitrate;
7317-
const aspectRatio = this.gameManager.getVideoDimensions("aspect") || 1.333333;
7318+
const aspectRatio =
7319+
this.gameManager.getVideoDimensions("aspect") || 1.333333;
73187320
const videoRotation = parseInt(this.getSettingValue("videoRotation") || 0);
73197321
const videoTurned = videoRotation === 1 || videoRotation === 3;
73207322
let width = 800;

0 commit comments

Comments
 (0)