LibretroDroid icon indicating copy to clipboard operation
LibretroDroid copied to clipboard

DOSBOX_PURE setting variables does not take effect

Open android-1995 opened this issue 2 years ago • 0 comments

I know that DOSBOX_PURE is the core of the test, however I think this bug still needs to be reported.

      val data = GLRetroViewData(this).apply {
          coreFilePath = "libdosbox_pure_libretro_android.so"
          gameFilePath = "${filesDir}/example.dosz"
          gameFileBytes = null
          systemDirectory = filesDir.absolutePath
          savesDirectory = filesDir.absolutePath


          /* For example, the Variable I set will not take effect */
          variables = arrayOf(Variable("dosbox_pure_cpu_type", "386"))


          saveRAMState = null
          shader = LibretroDroid.SHADER_DEFAULT
          rumbleEventsEnabled = true
          preferLowLatencyAudio = true
      }
      retroView = GLRetroView(this, data)

android-1995 avatar Jul 15 '22 07:07 android-1995