mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-13 12:00:02 -04:00
10 lines
No EOL
385 B
JavaScript
10 lines
No EOL
385 B
JavaScript
// configuration
|
|
var opts = {
|
|
romReaders: [
|
|
new GameboyJS.RomFileReader(),
|
|
new GameboyJS.RomDropFileReader(document.getElementById('dropzone'))
|
|
]
|
|
};
|
|
var g = new GameboyJS.Gameboy(document.getElementById('canvas'), opts);
|
|
g.setSoundEnabled(document.getElementById('sound-enable').checked);
|
|
g.setScreenZoom(document.getElementById('screen-zoom').value); |