mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-11 00:58:57 +02:00
The gray one is not displaying correct on qlaunch, so why not use a eden one :) Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3350 Reviewed-by: crueter <crueter@eden-emu.dev> Reviewed-by: DraVee <dravee@eden-emu.dev> Reviewed-by: Lizzie <lizzie@eden-emu.dev> Co-authored-by: Maufeat <sahyno1996@gmail.com> Co-committed-by: Maufeat <sahyno1996@gmail.com>
20 lines
756 B
C++
20 lines
756 B
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <array>
|
|
#include "common/common_types.h"
|
|
|
|
// This is to consolidate system-wide constants that are used by multiple components of yuzu.
|
|
// This is especially to prevent the case of something in frontend duplicating a constexpr array or
|
|
// directly including some service header for the sole purpose of data.
|
|
namespace Core::Constants {
|
|
|
|
// ACC Service - An Eden Profile Picture JPEG used as user icon in absentia of real one.
|
|
extern const std::array<u8, 5099> ACCOUNT_BACKUP_JPEG;
|
|
|
|
} // namespace Core::Constants
|