mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-17 12:03:07 +01:00
Limit scope of encoding_convert_entry to ConversionTables.cpp
This commit is contained in:
@@ -14,6 +14,14 @@
|
||||
#include <cstdlib>
|
||||
#include <iterator>
|
||||
|
||||
struct encoding_convert_entry
|
||||
{
|
||||
uint16_t code;
|
||||
uint32_t unicode;
|
||||
};
|
||||
|
||||
extern const encoding_convert_entry RCT2ToUnicodeTable[];
|
||||
|
||||
// clang-format off
|
||||
const encoding_convert_entry RCT2ToUnicodeTable[] =
|
||||
{
|
||||
|
||||
@@ -11,12 +11,4 @@
|
||||
|
||||
#include "../common.h"
|
||||
|
||||
struct encoding_convert_entry
|
||||
{
|
||||
uint16_t code;
|
||||
uint32_t unicode;
|
||||
};
|
||||
|
||||
extern const encoding_convert_entry RCT2ToUnicodeTable[];
|
||||
|
||||
wchar_t encoding_convert_rct2_to_unicode(wchar_t rct2str);
|
||||
|
||||
Reference in New Issue
Block a user