Fix android editor build.

This commit is contained in:
Relintai 2022-08-02 16:27:43 +02:00
parent d485aa11ff
commit 7a274ee454
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ open class PandemoniumEditor : FullScreenPandemoniumApp() {
}
}
override fun onNewGodotInstanceRequested(args: Array<String>) {
override fun onNewPandemoniumInstanceRequested(args: Array<String>) {
// Parse the arguments to figure out which activity to start.
var targetClass: Class<*> = PandemoniumGame::class.java

View File

@ -33,6 +33,6 @@ package net.relintai.pandemonium.editor
/**
* Drives the 'run project' window of the Pandemonium Editor.
*/
class PandemoniumGame : PandemoniumEditor {
class PandemoniumGame : PandemoniumEditor() {
override fun overrideOrientationRequest() = false
}