Skip to content

Commit

Permalink
fixed SpkData.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabbo089 committed Oct 4, 2024
1 parent f57d4a8 commit 2724526
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/Game/Speaker/SpkData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ SpkData::SpkData(JKRArchive * archive) {
}

void SpkData::loadTable(u16 table) {
void* resource = FUN_8040f918(mArchive, table);
void* resource = mArchive->getResource(table);
mTable.setResource(resource);
}

void SpkData::loadWave(u16 wave) {
void* resource = FUN_8040f918(mArchive, wave);
void* resource = mArchive->getResource(wave);
mWave.setResource(resource);
}

Expand Down

0 comments on commit 2724526

Please sign in to comment.