summaryrefslogtreecommitdiff
path: root/src/n64dd/n64dd_error_headers.c
blob: bac2f97b957e2a9947123b0020ff0e929ebec2b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "n64dd.h"

// Padding in .rodata suggests that this array is in a separate file

/**
 * Region-specific "error number" headers used in N64DD error handling.
 * The first one is used if the current region is Japan (gCurrentRegion == REGION_JP),
 * the second otherwise.
 */
const char* gN64DDLocalizedErrorNumberHeaders[2] = {
    "エラー番号   ", // "Error Number"
    "Error Number    ",
};