2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-10 17:47:42 +00:00

Use UTF-8 exclusively internally

This removes SystemString, SystemChar, etc.
All filepaths and log strings are assumed to be UTF-8,
with conversions to UTF-16 for Windows APIs as appropriate.

Updates amuse, athena, boo, kabufua and nod
This commit is contained in:
2021-06-30 14:20:45 -04:00
parent 6e12554026
commit 9ca1a38171
160 changed files with 2029 additions and 2753 deletions

View File

@@ -270,7 +270,7 @@ void ImGuiEngine::End() {
bool rebind = false;
if (drawData->TotalIdxCount > IndexBufferSize) {
#if 0
Log.report(logvisor::Info, FMT_STRING(_SYS_STR("Resizing index buffer ({} < {})")), IndexBufferSize,
Log.report(logvisor::Info, FMT_STRING("Resizing index buffer ({} < {})"), IndexBufferSize,
drawData->TotalIdxCount);
#endif
IndexBufferSize = drawData->TotalIdxCount + 1000;
@@ -279,7 +279,7 @@ void ImGuiEngine::End() {
}
if (drawData->TotalVtxCount > VertexBufferSize) {
#if 0
Log.report(logvisor::Info, FMT_STRING(_SYS_STR("Resizing vertex buffer ({} < {})")), VertexBufferSize,
Log.report(logvisor::Info, FMT_STRING("Resizing vertex buffer ({} < {})"), VertexBufferSize,
drawData->TotalVtxCount);
#endif
VertexBufferSize = drawData->TotalVtxCount + 1000;