mirror of https://github.com/AxioDL/metaforce.git
Attempted fix for GCC link issues
This commit is contained in:
parent
2ff5bc5c0f
commit
857dc9f671
|
@ -1,9 +1,11 @@
|
||||||
#include <cstddef>
|
#include <cstddef>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
|
||||||
extern "C" const uint8_t ASSET_NAME_MP32[] = {0};
|
extern "C" {
|
||||||
extern "C" const size_t ASSET_NAME_MP32_SZ = 0;
|
const uint8_t ASSET_NAME_MP32[] = {0};
|
||||||
extern "C" const size_t ASSET_NAME_MP32_DECOMPRESSED_SZ = 0;
|
const size_t ASSET_NAME_MP32_SZ = 0;
|
||||||
extern "C" const uint8_t ASSET_NAME_MP64[] = {0};
|
const size_t ASSET_NAME_MP32_DECOMPRESSED_SZ = 0;
|
||||||
extern "C" const size_t ASSET_NAME_MP64_SZ = 0;
|
const uint8_t ASSET_NAME_MP64[] = {0};
|
||||||
extern "C" const size_t ASSET_NAME_MP64_DECOMPRESSED_SZ = 0;
|
const size_t ASSET_NAME_MP64_SZ = 0;
|
||||||
|
const size_t ASSET_NAME_MP64_DECOMPRESSED_SZ = 0;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue