mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 05:19:00 +00:00
txd.img bug
This commit is contained in:
parent
76fe1247c8
commit
c2e20070ab
2 changed files with 6 additions and 0 deletions
|
@ -525,6 +525,7 @@ SetTxdFindCallback(void)
|
|||
CTxdStore::AddRef(slot);
|
||||
// TODO: function for this
|
||||
genericTxd = CTxdStore::GetSlot(slot)->texDict;
|
||||
assert(genericTxd);
|
||||
if(defaultFindCB == nil)
|
||||
defaultFindCB = rw::Texture::findCB;
|
||||
rw::Texture::findCB = customFindCB;
|
||||
|
|
|
@ -289,6 +289,11 @@ CreateTxdImageForVideoCard()
|
|||
ConvertingTexturesScreen(i, TXDSTORESIZE, "CVT_MSG");
|
||||
|
||||
if (CTxdStore::GetSlot(i) != nil && CStreaming::IsObjectInCdImage(i + STREAM_OFFSET_TXD)) {
|
||||
#ifdef FIX_BUGS
|
||||
if(strcmp(CTxdStore::GetTxdName(i), "generic") == 0)
|
||||
continue;
|
||||
#endif
|
||||
|
||||
CStreaming::RequestTxd(i, STREAMFLAGS_KEEP_IN_MEMORY);
|
||||
CStreaming::RequestModelStream(0);
|
||||
CStreaming::FlushChannels();
|
||||
|
|
Loading…
Reference in a new issue