mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-01 16:37:44 +00:00
Fix the "A Realm Reborn" expansion text never being fetched
This commit is contained in:
parent
e7ae19da6e
commit
58c304086c
1 changed files with 1 additions and 1 deletions
|
@ -99,7 +99,7 @@ void Profile::readGameData()
|
||||||
const physis_EXD exd = physis_gamedata_read_excel_sheet(m_gameData, "ExVersion", exh, Language::English, 0);
|
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.
|
// 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);
|
auto rows = physis_exd_read_row(&exd, i);
|
||||||
for (int j = 0; j < rows.row_count; j++) {
|
for (int j = 0; j < rows.row_count; j++) {
|
||||||
auto row = rows.row_data[j];
|
auto row = rows.row_data[j];
|
||||||
|
|
Loading…
Add table
Reference in a new issue