android: EmulationActivity: Fix variable shadowing in fragment creation.

This commit is contained in:
bunnei 2023-03-18 21:28:22 -07:00
parent f45a0b94d6
commit b5b4e50c32
1 changed files with 2 additions and 2 deletions

View File

@ -72,12 +72,12 @@ open class EmulationActivity : AppCompatActivity() {
setContentView(R.layout.activity_emulation)
// Find or create the EmulationFragment
var emulationFragment =
emulationFragment =
supportFragmentManager.findFragmentById(R.id.frame_emulation_fragment) as EmulationFragment?
if (emulationFragment == null) {
emulationFragment = EmulationFragment.newInstance(path)
supportFragmentManager.beginTransaction()
.add(R.id.frame_emulation_fragment, emulationFragment)
.add(R.id.frame_emulation_fragment, emulationFragment!!)
.commit()
}
title = selectedTitle