diff --git a/embed.html b/embed.html index 2b0a4fd7..e2036c3a 100644 --- a/embed.html +++ b/embed.html @@ -13,8 +13,11 @@ align-items: center; justify-content: center; } +#emuscreen { + flex-grow: 1; +} .emuvideo { - height:80%; + width:90%; border-radius:20px; border: 4px solid #222; outline-color: #666; diff --git a/src/ui.ts b/src/ui.ts index 62a15003..8b7def59 100644 --- a/src/ui.ts +++ b/src/ui.ts @@ -572,6 +572,13 @@ function pushChangesToGithub(message:string) { files.push({path:newpath, data:data}); } } + // TODO: include built ROM file in bin/[mainfile].rom + /* + if (current_output instanceof Uint8Array) { + let binpath = "bin/"+getCurrentMainFilename()+".rom"; + files.push({path:binpath, data:current_output}); + } + */ // push files setWaitDialog(true); return getGithubService().login().then( () => {