1
0
Fork 0
mirror of synced 2024-06-22 04:20:25 +12:00

RareGameBase: use default platform for version

This commit is contained in:
loathingKernel 2023-12-15 17:25:09 +02:00
parent 76083b9f07
commit 51337116d5
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD

View file

@ -169,7 +169,7 @@ class RareGameBase(QObject):
@return str The current version of the game
"""
return self.igame.version if self.igame is not None else self.game.app_version()
return self.igame.version if self.igame is not None else self.game.app_version(self.core.default_platform)
@property
def install_path(self) -> Optional[str]: