summaryrefslogtreecommitdiffstats
path: root/src/core/constants.cpp
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2019-06-07 23:46:52 +0200
committerZach Hilman <zachhilman@gmail.com>2019-06-07 23:46:57 +0200
commit11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5 (patch)
tree3f723cd6b6ba53248d2d35869bd274afde52e18d /src/core/constants.cpp
parentMerge pull request #2514 from ReinUsesLisp/opengl-compat (diff)
downloadyuzu-11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5.tar
yuzu-11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5.tar.gz
yuzu-11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5.tar.bz2
yuzu-11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5.tar.lz
yuzu-11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5.tar.xz
yuzu-11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5.tar.zst
yuzu-11f2f0f45c09f49366b62ef32ff1f01fd9efb7a5.zip
Diffstat (limited to '')
-rw-r--r--src/core/constants.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/core/constants.cpp b/src/core/constants.cpp
new file mode 100644
index 000000000..dccb3e03c
--- /dev/null
+++ b/src/core/constants.cpp
@@ -0,0 +1,17 @@
+// Copyright 2019 yuzu Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#include "core/constants.h"
+
+namespace Core::Constants {
+const std::array<u8, 107> ACCOUNT_BACKUP_JPEG{{
+ 0xff, 0xd8, 0xff, 0xdb, 0x00, 0x43, 0x00, 0x03, 0x02, 0x02, 0x02, 0x02, 0x02, 0x03, 0x02, 0x02,
+ 0x02, 0x03, 0x03, 0x03, 0x03, 0x04, 0x06, 0x04, 0x04, 0x04, 0x04, 0x04, 0x08, 0x06, 0x06, 0x05,
+ 0x06, 0x09, 0x08, 0x0a, 0x0a, 0x09, 0x08, 0x09, 0x09, 0x0a, 0x0c, 0x0f, 0x0c, 0x0a, 0x0b, 0x0e,
+ 0x0b, 0x09, 0x09, 0x0d, 0x11, 0x0d, 0x0e, 0x0f, 0x10, 0x10, 0x11, 0x10, 0x0a, 0x0c, 0x12, 0x13,
+ 0x12, 0x10, 0x13, 0x0f, 0x10, 0x10, 0x10, 0xff, 0xc9, 0x00, 0x0b, 0x08, 0x00, 0x01, 0x00, 0x01,
+ 0x01, 0x01, 0x11, 0x00, 0xff, 0xcc, 0x00, 0x06, 0x00, 0x10, 0x10, 0x05, 0xff, 0xda, 0x00, 0x08,
+ 0x01, 0x01, 0x00, 0x00, 0x3f, 0x00, 0xd2, 0xcf, 0x20, 0xff, 0xd9,
+}};
+}