1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Fix if statement with empty body.

This commit is contained in:
mogemimi
2014-03-05 23:09:41 +09:00
parent 98a970585a
commit 9d463a8914

View File

@@ -27,6 +27,7 @@ void register_multiscript_types() {
}
void unregister_multiscript_types() {
if (script_multi_script);
if (script_multi_script) {
memdelete(script_multi_script);
}
}