mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 20:32:28 +00:00
feat(db): improve accuracy of db records
This commit is contained in:
parent
41554f32b4
commit
57db9ca2a5
6 changed files with 48 additions and 22 deletions
|
|
@ -5,6 +5,18 @@ const char* AchievementRec::GetFilename() {
|
|||
return "DBFilesClient\\Achievement.dbc";
|
||||
}
|
||||
|
||||
uint32_t AchievementRec::GetNumColumns() {
|
||||
return 62;
|
||||
}
|
||||
|
||||
uint32_t AchievementRec::GetRowSize() {
|
||||
return 248;
|
||||
}
|
||||
|
||||
int32_t AchievementRec::GetID() {
|
||||
return this->m_ID;
|
||||
}
|
||||
|
||||
bool AchievementRec::Read(SFile* f, const char* stringBuffer) {
|
||||
uint32_t titleOfs[16];
|
||||
uint32_t titleMask;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue