1
0
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:
Gymnasiast
2022-05-01 18:01:30 +02:00
parent 598675ca8f
commit aaf83b48c4
2 changed files with 8 additions and 8 deletions

View File

@@ -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[] =
{

View File

@@ -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);