diff options
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/surface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/surface.h b/graphics/surface.h index 87c5f52503..19107b8bab 100644 --- a/graphics/surface.h +++ b/graphics/surface.h @@ -334,7 +334,7 @@ public: * * This deleter assures Surface::free is called on deletion. */ -struct SharedPtrSurfaceDeleter { +struct SurfaceDeleter { void operator()(Surface *ptr) { if (ptr) { ptr->free(); |