Open chichicaste opened 3 years ago
In the SDK version 7.6 there are some changes, so that it compiles correctly I share my solution.
Scripts & SDK
SDK: renamed confusing inf_is_32bit() -> inf_is_32bit_or_higher(); added inf_is_32bit_exactly(), inf_is_16bit(), inf_get_app_bitness()
in MemoryLoader.cpp:
line 135 change: else if (inf_is_32bit()) { to else if (inf_is_32bit_or_higher()) {
else if (inf_is_32bit()) {
else if (inf_is_32bit_or_higher()) {
line 148 change: if (!inf_is_64bit() && !inf_is_32bit()) { to if (!inf_is_64bit() && !inf_is_32bit_or_higher()) {
if (!inf_is_64bit() && !inf_is_32bit()) {
if (!inf_is_64bit() && !inf_is_32bit_or_higher()) {
In the SDK version 7.6 there are some changes, so that it compiles correctly I share my solution.
Scripts & SDK
SDK: renamed confusing inf_is_32bit() -> inf_is_32bit_or_higher(); added inf_is_32bit_exactly(), inf_is_16bit(), inf_get_app_bitness()
in MemoryLoader.cpp:
line 135 change:
else if (inf_is_32bit()) {
toelse if (inf_is_32bit_or_higher()) {
line 148 change:
if (!inf_is_64bit() && !inf_is_32bit()) {
toif (!inf_is_64bit() && !inf_is_32bit_or_higher()) {