diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-01-28 22:53:50 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-01-28 22:53:50 +1100 |
commit | 7fab8c95c29556c6f87de5c19b7487bbf2ea3f93 (patch) | |
tree | 130330a797191348a7a210ac4ad969a66fe28363 /source/frontend | |
parent | 560e2e2ef8e4cff22eb0a66de7d8b629fd313b9d (diff) |
don't require mod version to be a string
Diffstat (limited to 'source/frontend')
-rw-r--r-- | source/frontend/StarModsMenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/frontend/StarModsMenu.cpp b/source/frontend/StarModsMenu.cpp index 039a94a..f74d5e7 100644 --- a/source/frontend/StarModsMenu.cpp +++ b/source/frontend/StarModsMenu.cpp @@ -68,7 +68,7 @@ void ModsMenu::update(float dt) { m_modName->setText(bestModName(assetsSourceMetadata, assetsSource)); m_modAuthor->setText(assetsSourceMetadata.value("author", "No Author Set").toString()); - m_modVersion->setText(assetsSourceMetadata.value("version", "No Version Set").toString()); + m_modVersion->setText(assetsSourceMetadata.value("version", "No Version Set").printString()); m_modPath->setText(assetsSource); m_modDescription->setText(assetsSourceMetadata.value("description", "").toString()); |