mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-19 19:14:42 -05:00
fix android empty string
This commit is contained in:
parent
dc8e34d8b8
commit
9906a8ff78
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ namespace gd {
|
||||||
namespace {
|
namespace {
|
||||||
static inline auto emptyInternalString() {
|
static inline auto emptyInternalString() {
|
||||||
return reinterpret_cast<_internal_string*>(
|
return reinterpret_cast<_internal_string*>(
|
||||||
*reinterpret_cast<uintptr_t*>(geode::base::get() + 0x75fb24) + sizeof(_internal_string)
|
geode::base::get() + 0x75fb24 + sizeof(_internal_string)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue