Codegen fixes, DPI scaling, SVG icons

This commit is contained in:
Jack Andersen
2019-05-26 15:29:10 -10:00
parent 9f94db6c82
commit d593500e18
195 changed files with 1720 additions and 192 deletions

View File

@@ -20,9 +20,9 @@
#define EXPORT_COOKED 1
#if NOD_UCS2
static nod::SystemStringView TStringToNodString(const TString& string) { return ToWChar(string); }
#define TStringToNodString(string) ToWChar(string)
#else
static nod::SystemStringView TStringToNodString(const TString& string) { return *string; }
#define TStringToNodString(string) *string
#endif
CGameExporter::CGameExporter(EDiscType DiscType, EGame Game, bool FrontEnd, ERegion Region, const TString& rkGameName, const TString& rkGameID, float BuildVersion)

View File

@@ -6,9 +6,9 @@
#include <nod/nod.hpp>
#if NOD_UCS2
static nod::SystemStringView TStringToNodString(const TString& string) { return ToWChar(string); }
#define TStringToNodString(string) ToWChar(string)
#else
static nod::SystemStringView TStringToNodString(const TString& string) { return *string; }
#define TStringToNodString(string) *string
#endif
CGameProject::~CGameProject()