Paul Cercueil
Paul Cercueil
I see several points that would need to be worked on: - the PSP's CPU has more instructions to be emulated, but that won't be the bigger problem. - the...
The memory map may exist in your memory class, but unless you want emulation to be a slide-show, the dynarec cannot exit at every I/O opcode to call your memory...
@jfdelnero there is a Freedesktop standard for that; The directory `/usr/share/thumbnailers` contains *.thumbnailer files with the following schema (example): ``` [Thumbnailer Entry] TryExec=/usr/bin/gdk-pixbuf-thumbnailer Exec=/usr/bin/gdk-pixbuf-thumbnailer -s %s %u %o MimeType=image/svg+xml;image/svg+xml-compressed; ```...
The trick with Jackie Chan Stuntmaster is that you have to check for software interrupts right after a MTC0/CTC0 to registers 12 or 13. If you wait until the next...
Better have an option() to choose whether or not to use the system libs. Otherwise the build is not reproductible as it depends on the build environment.
@mazes-80 just force-push the PR, you don't have to close it and open a new one.
About the background color - maybe that's something the theme should provide? Then we can have a dark theme (the current one) and a light theme.
Where did you read that `ssize_t` is deprecated? That sounds like complete BS to me. Note that by changing `ssize_t` to `intmax_t`, you change the type from 32 to 64+...
Ok, good to know about `ssize_t`. I guess `intptr_t` would be a better match than `intmax_t`, since you want the type to be "large enough", not "as large as possible"....
@jstine35 MSVC will happily accept the `_Bool` type.