mirror of
https://github.com/redphx/better-xcloud.git
synced 2025-06-06 15:47:18 +02:00
Minor fixes
This commit is contained in:
parent
4c593a298e
commit
e52a296872
@ -4,7 +4,7 @@ import { STATES } from "@utils/global";
|
|||||||
import { getPref, PrefKey } from "@utils/preferences";
|
import { getPref, PrefKey } from "@utils/preferences";
|
||||||
import { UserAgent } from "@utils/user-agent";
|
import { UserAgent } from "@utils/user-agent";
|
||||||
|
|
||||||
enum InputType {
|
export enum InputType {
|
||||||
CONTROLLER = 'Controller',
|
CONTROLLER = 'Controller',
|
||||||
MKB = 'MKB',
|
MKB = 'MKB',
|
||||||
CUSTOM_TOUCH_OVERLAY = 'CustomTouchOverlay',
|
CUSTOM_TOUCH_OVERLAY = 'CustomTouchOverlay',
|
||||||
|
@ -8,6 +8,7 @@ import { TouchController } from "@modules/touch-controller";
|
|||||||
import { STATES } from "@utils/global";
|
import { STATES } from "@utils/global";
|
||||||
import { getPreferredServerRegion } from "@utils/region";
|
import { getPreferredServerRegion } from "@utils/region";
|
||||||
import { GamePassCloudGallery } from "./gamepass-gallery";
|
import { GamePassCloudGallery } from "./gamepass-gallery";
|
||||||
|
import { InputType } from "./bx-exposed";
|
||||||
|
|
||||||
export const NATIVE_FETCH = window.fetch;
|
export const NATIVE_FETCH = window.fetch;
|
||||||
|
|
||||||
@ -188,7 +189,7 @@ class XhomeInterceptor {
|
|||||||
let hasTouchSupport = inputConfigs.supportedTabs.length > 0;
|
let hasTouchSupport = inputConfigs.supportedTabs.length > 0;
|
||||||
if (!hasTouchSupport) {
|
if (!hasTouchSupport) {
|
||||||
const supportedInputTypes = inputConfigs.supportedInputTypes;
|
const supportedInputTypes = inputConfigs.supportedInputTypes;
|
||||||
hasTouchSupport = supportedInputTypes.includes('NativeTouch');
|
hasTouchSupport = supportedInputTypes.includes(InputType.NATIVE_TOUCH) || supportedInputTypes.includes(InputType.CUSTOM_TOUCH_OVERLAY);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (hasTouchSupport) {
|
if (hasTouchSupport) {
|
||||||
|
@ -319,7 +319,7 @@ export class Preferences {
|
|||||||
|
|
||||||
[PrefKey.BITRATE_VIDEO_MAX]: {
|
[PrefKey.BITRATE_VIDEO_MAX]: {
|
||||||
type: SettingElementType.NUMBER_STEPPER,
|
type: SettingElementType.NUMBER_STEPPER,
|
||||||
label: 'Maximum video bitrate',
|
label: t('bitrate-video-maximum'),
|
||||||
note: '⚠️ ' + t('unexpected-behavior'),
|
note: '⚠️ ' + t('unexpected-behavior'),
|
||||||
default: 0,
|
default: 0,
|
||||||
min: 0,
|
min: 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user