Lite: remove NativeMkbHandler code in built script

This commit is contained in:
redphx
2024-10-01 17:47:01 +07:00
parent 8f6bc5cb1b
commit 9007663a3a
3 changed files with 17 additions and 191 deletions

View File

@@ -1,3 +1,5 @@
import { isFullVersion } from "@macros/build" with {type: "macro"};
import { MkbPreset } from "./mkb-preset";
import { GamepadKey, MkbPresetKey, GamepadStick, MouseMapTo, WheelCode } from "@enums/mkb";
import { createButton, ButtonStyle, CE } from "@utils/html";
@@ -677,7 +679,7 @@ export class EmulatedMkbHandler extends MkbHandler {
}
static setupEvents() {
window.addEventListener(BxEvent.STREAM_PLAYING, () => {
isFullVersion() && window.addEventListener(BxEvent.STREAM_PLAYING, () => {
if (STATES.currentStream.titleInfo?.details.hasMkbSupport) {
// Enable native MKB in Android app
if (AppInterface && getPref(PrefKey.NATIVE_MKB_ENABLED) === 'on') {

View File

@@ -590,14 +590,14 @@ export class SettingsNavigationDialog extends NavigationDialog {
requiredVariants: 'full',
},
getPref(PrefKey.MKB_ENABLED) && {
isFullVersion() && getPref(PrefKey.MKB_ENABLED) && {
icon: BxIcon.VIRTUAL_CONTROLLER,
group: 'mkb',
items: this.TAB_VIRTUAL_CONTROLLER_ITEMS,
requiredVariants: 'full',
},
AppInterface && getPref(PrefKey.NATIVE_MKB_ENABLED) === 'on' && {
isFullVersion() && AppInterface && getPref(PrefKey.NATIVE_MKB_ENABLED) === 'on' && {
icon: BxIcon.NATIVE_MKB,
group: 'native-mkb',
items: this.TAB_NATIVE_MKB_ITEMS,