Results 61 comments of Boris Gjenero
trafficstars

I don't think that https://github.com/dreamlayers/em-dosbox/issues/4#issuecomment-71932465 by @DerKoun can be used. Directories are the problem. It must be possible to see content from both file systems in the same directory. Code...

I understand the importance. I have added more commits to https://github.com/dreamlayers/BrowserFS/tree/unionfs, enabling copy on write, handling directories, adding prefixes which can keep pages separate in a shared file system. I...

I can't reproduce this. I can click, get pointer lock, break it with the escape key or with `setTimeout(function(){ document.exitPointerLock(); }, 3000);` and then press keys without re-establishing pointer lock....

If compiled with Emscripten emterpreter sync, https://github.com/dreamlayers/em-dosbox/blob/em-dosbox-svn-sdl2/src/dosbox.cpp#L163 , in particular the numbers after the + here: ``` C } else if (SDL_TICKS_PASSED(ticksEntry, last_sleep + 2000) && !SDL_TICKS_PASSED(ticksEntry, last_loop + 200))...

Emscripten emterpreter requires the .mem file. There is no real technical reason why that is unavoidable; it's just the way that Emscripten feature is designed. I believe that the problem...

Your [idea of using a web worker](http://dreamlayers.blogspot.ca/2015/01/the-hard-problem-with-porting-dosbox-to.html?showComment=1430738227394#c539138203569598559) is intriguing. I assume that way DOSBox could keep executing normally with no need to return to the browser regularly. Hopefully SDL calls...

The only situation that might be easily fixable in Windows is if some application crashes with a page fault that can't be handled. Then Windows wouldn't return because it can't...

I modified a simple SDL 2 test program I used before, replacing `emscripten_set_main_loop(mainloop, 0, 0);` with ``` C while (1) { mainloop(); SDL_Delay(100); } ``` Then I rebuilt it with...

It seems a web worker can't receive messages if it is running in an infinite loop. This means DOSBox could not get input. If you want input, you need to...

I [asked about running synchronous code in a web worker on emscripten-discuss](https://groups.google.com/forum/#!topic/emscripten-discuss/uxDbZ9XOj3Q). Apparently it will be possible in the future! @J7mbo, if you get timeouts in one browser but not...