Add missing return value for scummvm path

This commit is contained in:
Mathieu Comandon 2013-12-22 01:08:03 +01:00
parent 1af7d6739a
commit fbf1cee108

View file

@ -130,6 +130,8 @@ class scummvm(Runner):
'runners/scummvm/scummvm')
if not os.path.exists(scummvm_path):
return find_executable("scummvm")
else:
return scummvm_path
def get_game_path(self):
return self.settings['game']['path']