2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-13 06:33:29 +00:00

Attempted fix for GCC link issues

This commit is contained in:
Luke Street 2021-05-27 13:00:38 -04:00
parent c59192beb6
commit ef536c66f9

View File

@ -1,9 +1,11 @@
#include <cstddef>
#include <cstdint>
extern "C" const uint8_t ASSET_NAME_MP32[] = {0};
extern "C" const size_t ASSET_NAME_MP32_SZ = 0;
extern "C" const size_t ASSET_NAME_MP32_DECOMPRESSED_SZ = 0;
extern "C" const uint8_t ASSET_NAME_MP64[] = {0};
extern "C" const size_t ASSET_NAME_MP64_SZ = 0;
extern "C" const size_t ASSET_NAME_MP64_DECOMPRESSED_SZ = 0;
extern "C" {
const uint8_t ASSET_NAME_MP32[] = {0};
const size_t ASSET_NAME_MP32_SZ = 0;
const size_t ASSET_NAME_MP32_DECOMPRESSED_SZ = 0;
const uint8_t ASSET_NAME_MP64[] = {0};
const size_t ASSET_NAME_MP64_SZ = 0;
const size_t ASSET_NAME_MP64_DECOMPRESSED_SZ = 0;
}