mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 21:07:47 +00:00
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:
parent
7364c759a5
commit
8280ddfd1c
3 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue