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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











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 in JavaScript? When processing data, we often encounter the need to have the same ID...

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.

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.

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.

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.

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

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
