Home Hardware Tutorial Hardware News New Nintendo Switch update 18.1.0 ends X/Twitter integration

New Nintendo Switch update 18.1.0 ends X/Twitter integration

Jun 14, 2024 am 10:59 AM
switch twitter laptop x test Notebook review reviews tests reports netbook Nintendo removal

New Nintendo Switch update 18.1.0 ends X/Twitter integration

On June 10, 2024, Nintendo released the firmware update 18.1.0 for the Nintendo Switch, which ends the integration of X (formerly Twitter). This removes several functions of the hybrid console.

With the new update, users can no longer share content directly from the Switch album in the HOME menu on Twitter. The ability to post screenshots of Super Smash Bros. Ultimate to Smash World via the Nintendo Switch Online app has also been disabled. In addition, the linking of Twitter accounts to user profiles in the user settings has been removed, as has the option to link social media accounts under "My Page" > "Friend Suggestions".

Nintendo of America had already announced on May 9, on X, that the integration of the social media platform would be discontinued. However, no specific reasons have yet been given. However, it is speculated that the decision is related to increased fees for business use of the Twitter API.

In addition to the removal of the X integration, update 18.1.0 brings general system stability improvements. It applies to all models of the Nintendo Switch and is downloaded automatically if the automatic update function is activated in the system settings. Alternatively, the update can also be checked and downloaded manually.

The above is the detailed content of New Nintendo Switch update 18.1.0 ends X/Twitter integration. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1663
14
PHP Tutorial
1266
29
C# Tutorial
1239
24
Explain the match expression (PHP 8 ) and how it differs from switch. Explain the match expression (PHP 8 ) and how it differs from switch. Apr 06, 2025 am 12:03 AM

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.

How to merge array elements with the same ID into one object using JavaScript? How to merge array elements with the same ID into one object using JavaScript? Apr 04, 2025 pm 05:09 PM

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Avoid errors caused by default in C switch statements Avoid errors caused by default in C switch statements Apr 03, 2025 pm 03:45 PM

A strategy to avoid errors caused by default in C switch statements: use enums instead of constants, limiting the value of the case statement to a valid member of the enum. Use fallthrough in the last case statement to let the program continue to execute the following code. For switch statements without fallthrough, always add a default statement for error handling or provide default behavior.

Best practices for C language default Best practices for C language default Apr 03, 2025 pm 03:48 PM

The best practices of default in C language: place it at the end of the switch statement as the default processing for unmatched values; it is used to handle unknown or invalid values ​​to improve program robustness; avoid duplication with case branches to maintain conciseness; comment clearly on the purpose of the default branch to improve readability; avoid using multiple defaults in one case to maintain clarity; keep the default branch concise and avoid complex operations; consider using enumeration values ​​as case conditions to improve maintainability; in large switch statements, use multiple default branches to handle different situations.

The role of default in C language switch statement The role of default in C language switch statement Apr 03, 2025 pm 04:06 PM

default is a special situation in C switch statements, used to deal with situations where all case statements do not match the switch conditions, ensuring that the switch statement always executes a branch to prevent unexpected behavior or code errors.

Understand the C language default keywords Understand the C language default keywords Apr 03, 2025 pm 04:03 PM

The default keyword is used to handle unmatched cases in switch-case statements, providing a mechanism to handle unprocessed cases, which is immediately after the last case tag, enclosed in braces {}, can contain any C code, and is optional.

C language default: a tool for handling unmatched situations C language default: a tool for handling unmatched situations Apr 03, 2025 pm 03:54 PM

The default in C language is an optional part of the switch statement, which is used to handle unmatched situations, provides bottom-line processing and simplifies code. Syntax: switch (expression) { case constant1: statement1; break; case constant2: statement2; break; default: default_statement; break; } Function: (1) When the value of expression does not match any case constant, execute the default part. (2) If sw

Exercise C: Building a simple phonebook application Exercise C: Building a simple phonebook application Apr 03, 2025 pm 08:15 PM

One of the best ways to learn C language programming is to practice it. This article will take you step through a project I recently completed: a simple phonebook application. This app demonstrates file processing and basic data management in C, allowing you to add, view, and delete contacts. The following is the complete code: #include#include//Function declaration voidaddcontact(charname[],charnumber[]);voidviewcontacts();voiddeletecontact(c

See all articles