d_heap OK (#47)

* d_heap OK

* wibo workaround
This commit is contained in:
robojumper
2024-10-01 14:48:49 +02:00
committed by GitHub
parent 4d9806f2fc
commit d75f4c92ef
5 changed files with 55 additions and 29 deletions
+3 -1
View File
@@ -61,7 +61,9 @@ void dHeap::createLayoutEx2Heap(size_t size, EGG::Heap *parent) {
layoutEx2Heap.init(name, size, parent);
}
void dHeap::createLayoutResHeap(size_t size, EGG::Heap *parent) {
static const char name[] = "レイアウトリソース用ヒープ(dHeap::layoutResHeap)";
// Supposed to be "レイアウトリソース用ヒープ(dHeap::layoutResHeap)" but
// this creates a Linux compile issue with wibo
static const char name[] = "レイアウトリ\x83\x5Cース用ヒープ(dHeap::layoutResHeap)";
layoutResHeap.init(name, size, parent);
}
void dHeap::createFontHeap(size_t size, EGG::Heap *parent) {