mirror of
https://github.com/zeldaret/ss
synced 2026-06-22 16:42:53 -04:00
sjiswrap v1.2.0 fixes invalid char errors in CI
This commit is contained in:
@@ -63,8 +63,6 @@ void dHeap::createLayoutEx2Heap(size_t size, EGG::Heap *parent) {
|
||||
layoutEx2Heap.init(name, size, parent);
|
||||
}
|
||||
void dHeap::createLayoutResHeap(size_t size, EGG::Heap *parent) {
|
||||
// Supposed to be "レイアウトリソース用ヒープ(dHeap::layoutResHeap)" but
|
||||
// this creates a Linux compile issue with wibo
|
||||
static const char name[] = "レイアウトリソース用ヒープ(dHeap::layoutResHeap)";
|
||||
layoutResHeap.init(name, size, parent);
|
||||
}
|
||||
|
||||
@@ -27,7 +27,6 @@ bool init(mAllocator_c *allocator) {
|
||||
void create(EGG::Heap *heap, u32 size) {
|
||||
if (size != 0) {
|
||||
heap = EGG::ExpHeap::create(size, heap, 0);
|
||||
// Supposed to be 2D表示用ヒープ(m2d::create), but creates a linux compile issue
|
||||
heap->setName("2D表示用ヒープ(m2d::create)");
|
||||
}
|
||||
mAllocator_c *allocator = new (heap, 0x04) mAllocator_c();
|
||||
|
||||
Reference in New Issue
Block a user