constants.h 627 B

1234567891011121314151617
  1. // SPDX-FileCopyrightText: Copyright 2019 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <array>
  5. #include "common/common_types.h"
  6. // This is to consolidate system-wide constants that are used by multiple components of yuzu.
  7. // This is especially to prevent the case of something in frontend duplicating a constexpr array or
  8. // directly including some service header for the sole purpose of data.
  9. namespace Core::Constants {
  10. // ACC Service - Blank JPEG used as user icon in absentia of real one.
  11. extern const std::array<u8, 287> ACCOUNT_BACKUP_JPEG;
  12. } // namespace Core::Constants