rasterizer_cache: Add missing virtual destructor to RasterizerCacheObject

Ensures that destruction will always do the right thing in any context.
This commit is contained in:
Lioncash 2018-11-08 00:31:35 -05:00
parent 29f082775b
commit 9de523fd90
3 changed files with 10 additions and 0 deletions

View file

@ -17,6 +17,8 @@
class RasterizerCacheObject {
public:
virtual ~RasterizerCacheObject();
/// Gets the address of the shader in guest memory, required for cache management
virtual VAddr GetAddr() const = 0;