Currently if you use a 32bit version of Python you get the following error when scanning Dreamcast games:
Traceback (most recent call last):
File "rominfo.py", line 16, in main()
File "rominfo.py", line 12, in main
analyze_file(file, filename)
File "G:\rom-info-master\analyze.py", line 53, in analyze_file
handler.get_info()
File "G:\rom-info-master\handlers\dreamcast.py", line 96, in get_info
with file:
File "G:\rom-info-master\utils.py", line 18, in __enter__
self.mmap = mmap.mmap(self.file.fileno(), 0, access=self.mmap_access)
OSError: [WinError 8] Not enough storage is available to process this command
Installing a 64bit version of Python fixes this issue. However, maybe we should get it working for 32bit users as well? If not, we should specify 64bit OS as the minimum requirement to run rom-info.
Currently if you use a 32bit version of Python you get the following error when scanning Dreamcast games: