Skip to content

Commit

Permalink
add github issue to error string
Browse files Browse the repository at this point in the history
  • Loading branch information
Kautenja committed Aug 26, 2020
1 parent d4afc84 commit 283f521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nes_py/nes_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def __init__(self, rom_path):
raise ValueError('ROM is PAL. PAL is not supported.')
# check that the mapper is implemented
elif rom.mapper not in {0, 1, 2, 3}:
msg = 'ROM has an unsupported mapper number {}.'
msg = 'ROM has an unsupported mapper number {}. please see https://github.com/Kautenja/nes-py/issues/28 for more information.'
raise ValueError(msg.format(rom.mapper))
# create a dedicated random number generator for the environment
self.np_random = np.random.RandomState()
Expand Down

0 comments on commit 283f521

Please sign in to comment.