From 58c304086c51afebf1293877cde8f31e0809c6fd Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 29 Apr 2025 15:12:07 -0400 Subject: [PATCH] Fix the "A Realm Reborn" expansion text never being fetched --- launcher/src/profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/profile.cpp b/launcher/src/profile.cpp index 7a84490..6ad8ff6 100644 --- a/launcher/src/profile.cpp +++ b/launcher/src/profile.cpp @@ -99,7 +99,7 @@ void Profile::readGameData() const physis_EXD exd = physis_gamedata_read_excel_sheet(m_gameData, "ExVersion", exh, Language::English, 0); // TODO: bad API, we should instead get a list of row ids from libphysis but that API doesn't exist yet. - for (unsigned int i = 1; i < exd.row_count + 1; i++) { + for (unsigned int i = 0; i < exd.row_count; i++) { auto rows = physis_exd_read_row(&exd, i); for (int j = 0; j < rows.row_count; j++) { auto row = rows.row_data[j];