aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/3ds
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/3ds
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/3ds')
-rw-r--r--backends/platform/3ds/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/3ds/main.cpp b/backends/platform/3ds/main.cpp
index e9046d7c28..20983141c1 100644
--- a/backends/platform/3ds/main.cpp
+++ b/backends/platform/3ds/main.cpp
@@ -40,7 +40,7 @@ int main(int argc, char *argv[]) {
// res = scummvm_main(argc, argv);
scummvm_main(0, nullptr);
- delete dynamic_cast<_3DS::OSystem_3DS*>(g_system);
+ g_system->destroy();
// Turn on both screen backlights before exiting.
if (R_SUCCEEDED(gspLcdInit())) {