[Vulkan] Add missing line to mark a texture as watched

This commit is contained in:
Triang3l 2019-08-04 18:29:20 +03:00
parent 4248f9ed19
commit 68017eadea
1 changed files with 1 additions and 0 deletions

View File

@ -408,6 +408,7 @@ void TextureCache::WatchTexture(Texture* texture) {
}
watched_textures_.push_back(watched_texture);
texture->is_watched = true;
}
memory_->WatchPhysicalMemoryWrite(address, size);