aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/null
diff options
context:
space:
mode:
authorThierry Crozat2018-07-07 01:05:54 +0100
committerThierry Crozat2018-10-14 21:25:33 +0100
commit941d22c047e1afb6b882114d2c7d3a1660cda5c0 (patch)
tree6299846cc73c3b3309029de47f6e372ecf10715a /backends/platform/null
parent1e11da712ba8359cb65b0a171c7ce83de6a17879 (diff)
downloadscummvm-rg350-941d22c047e1afb6b882114d2c7d3a1660cda5c0.tar.gz
scummvm-rg350-941d22c047e1afb6b882114d2c7d3a1660cda5c0.tar.bz2
scummvm-rg350-941d22c047e1afb6b882114d2c7d3a1660cda5c0.zip
BACKENDS: Use OSystem::destroy() instead of deleting directly the g_system instance
Diffstat (limited to 'backends/platform/null')
-rw-r--r--backends/platform/null/null.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/null/null.cpp b/backends/platform/null/null.cpp
index be50fde27c..2f34ae8f93 100644
--- a/backends/platform/null/null.cpp
+++ b/backends/platform/null/null.cpp
@@ -137,7 +137,7 @@ int main(int argc, char *argv[]) {
// Invoke the actual ScummVM main entry point:
int res = scummvm_main(argc, argv);
- delete (OSystem_NULL *)g_system;
+ g_system->destroy();
return res;
}