mirror of https://github.com/stella-emu/stella.git
Stab at fixing memory issues.
This commit is contained in:
parent
7fc5be492a
commit
3aaeead676
|
@ -26,6 +26,7 @@
|
||||||
"functional": "cpp",
|
"functional": "cpp",
|
||||||
"iomanip": "cpp",
|
"iomanip": "cpp",
|
||||||
"__cxx_version": "cpp",
|
"__cxx_version": "cpp",
|
||||||
"string": "cpp"
|
"string": "cpp",
|
||||||
|
"type_traits": "cpp"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -179,7 +179,7 @@ void FBSurfaceSDL2::invalidate()
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
void FBSurfaceSDL2::free()
|
void FBSurfaceSDL2::free()
|
||||||
{
|
{
|
||||||
myBlitter.reset();
|
myBlitter.reset(nullptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
|
|
Loading…
Reference in New Issue