MORPHOS: Remove unneeded cast

This commit is contained in:
Cameron Cawley 2020-08-24 20:46:12 +01:00 committed by GitHub
parent 8c52f6db12
commit dca7c1829c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ int main(int argc, char *argv[]) {
assert(g_system);
// Pre initialize the backend
((OSystem_MorphOS *)g_system)->init();
g_system->init();
#ifdef DYNAMIC_MODULES
PluginManager::instance().addPluginProvider(new SDLPluginProvider());