constants.h 646 B

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