Jan Johansson

Results 11 comments of Jan Johansson

randalgazz suggestion seems to have worked for me, I'm on MBP 14" 2021 with Monterey and M1 Pro

This is the same as issue #7 As mentioned there, a workaround is to change line 37 of wiimetadata.py FROM: self.name = name TO: self.name = id Although it gives...

I've made a fix that should resolve all the issues except the one with duplicated games (Sonic the Hedgehog). Basically everything that are not known safe characters are stripped from...

You may want to check my port has been migrated to Python 3: https://github.com/JanErikGunnar/vcromclaim

For this game, the 00000001.app file was LZ77 compressed, So to extract the rom for this game, I used (omitting paths for readability): python lz77.py 00000001.app temp.app python nes_rom_extract.py temp.app...

This might be the same issue as I had (issue number 6), basically you might need to run lz77.py to decompress 00000001.app, then run nes_rom_extract.py on the output.

Hi! Nothing to apologize for! And I should thank you for the huge effort in creating this to begin with, clearly it took a lot of work and it's been...

I MAY try to port it some day (will do it in my fork first and maybe merge it if is successful). However this is NOT trivial, some of the...

FYI my fork has been ported to Python 3: https://github.com/JanErikGunnar/vcromclaim

Looks like the game name contains characters that can't be used in a file name. One workaround could be to change line 37 of wiimetadata.py FROM: self.name = name TO:...