diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-02-04 16:26:57 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-02-04 16:26:57 +1000 |
commit | 89ecb641f1dc9debc41297dcd3eb9a8f44cdbbfa (patch) | |
tree | 5745fa47613275542477f4a4bcdd3477882d9b9c | |
parent | 3857e6afe974c0751ff45ce168c531570d075f65 (diff) |
api_version: Update Atmosphere version and add citron copyright
Update the Atmosphere release version minor number from 0 to 8 to match
newer firmware versions. Also add copyright notice for citron Emulator
Project.
This change maintains compatibility with newer system versions while
preserving the existing version number format.
-rw-r--r-- | src/core/hle/api_version.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/api_version.h b/src/core/hle/api_version.h index fb618d35d..379ee5e03 100644 --- a/src/core/hle/api_version.h +++ b/src/core/hle/api_version.h @@ -1,4 +1,5 @@ // SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project +// SPDX-FileCopyrightText: Copyright 2025 citron Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #pragma once @@ -28,7 +29,7 @@ constexpr char DISPLAY_TITLE[] = "NintendoSDK Firmware for NX 19.0.1-1.0"; // Atmosphere version constants. constexpr u8 ATMOSPHERE_RELEASE_VERSION_MAJOR = 1; -constexpr u8 ATMOSPHERE_RELEASE_VERSION_MINOR = 0; +constexpr u8 ATMOSPHERE_RELEASE_VERSION_MINOR = 8; constexpr u8 ATMOSPHERE_RELEASE_VERSION_MICRO = 0; constexpr u32 AtmosphereTargetFirmwareWithRevision(u8 major, u8 minor, u8 micro, u8 rev) { |