mkwong98

Results 13 comments of mkwong98

Play the game until the point where the object can be seen on the screen (next frame to be exact). Pause the emulator and select "PPU Viewer" under "Debug" menu....

How about inserting save state to the saved movie file every minute like key frames in a movie file? Then at most we only need to re-emulate 1 minute of...

I have created a fork and added VS project to it. Currently only compiles to x86 with QT5. Instead of a symbolic path, I put the actual path to the...

Libretro Port is already available. You just have to look for it: https://github.com/NovaSquirrel/Mesen-X/actions/runs/3761243929

For reference, this is the file used: [https://github.com/NovaSquirrel/Mesen-X/blob/master/GUI.NET/Dependencies/MesenDB.txt](url) A quick fix is to update this file.

Thank you for reporting the errors. I'll try to fix the ones related to my commits. I think adding a default label to the switch statement should fix them.

Hi Ryunam. I think I fixed the problems in my commits. The other one in Core/SSGAudio.h is added by @Perkka2 in this commit [https://github.com/Perkka2/Mesen/commit/fdee47855aaee9a9e3ac2c95bdadaac82888532c#diff-c46f082694231ba998e7aa27838959b91b0ab758ef5dd75aad1c5aeb1b6ed315](url) and I don't have enough knowledge...

The fix is commit: [https://github.com/NovaSquirrel/Mesen/commit/eb82a00ebdc318bc910665c5157e81b253effc28](url) And this commit is already merged into this fork so you can try compiling this fork again.

``` In file included from ../Core/EPSMAudio.h:6, from ../Core/BaseMapper.h:13, from ../Core/FDS.h:4, from ../Core/FdsSystemActionManager.h:5, from LibretroKeyManager.h:5, from libretro.cpp:7: ../Core/SSGAudio.h: In member function 'void SSGAudio::UpdateOutputLevel()': ../Core/SSGAudio.h:29:88: warning: fold-expressions only available with '-std=c++17' or...

@Ryunam Can you try changing line 328 in Libretro/Makefile from `CXXFLAGS += -D LIBRETRO $(fpic) -std=c++14` to `CXXFLAGS += -D LIBRETRO $(fpic) -std=c++17`?