Skip to content

Commit

Permalink
Implement VVF cutscene playback
Browse files Browse the repository at this point in the history
  • Loading branch information
nextghost committed May 30, 2020
1 parent 3ecb407 commit 83b7552
Show file tree
Hide file tree
Showing 13 changed files with 1,263 additions and 460 deletions.
4 changes: 3 additions & 1 deletion signus-data/utils/datafile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ void TDataFile::sortindex(int bywhat)
qsort(index, count, sizeof(TDataIndex), compare_by_offset);
}


const char *TDataFile::filename(void) const {
return resf.getName();
}

TDataFile::~TDataFile() {
// DAT file contents have changed, write new item index
Expand Down
1 change: 1 addition & 0 deletions signus-data/utils/datafile.h
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ class TDataFile {
int getcount() { return count; }
TDataIndex *getinfo(int pos) { return &(index[pos]); }
void sortindex(int bywhat);
const char *filename(void) const;
~TDataFile();
};

Expand Down
Loading

0 comments on commit 83b7552

Please sign in to comment.