aboutsummaryrefslogtreecommitdiff
path: root/doc/README.android
diff options
context:
space:
mode:
authorVitaliy <numzer0@yandex.ru>2018-09-29 21:40:17 +0300
committerParamat <paramat@users.noreply.github.com>2018-09-29 19:40:17 +0100
commit18a8fbf465b47c4780d63f34c960af7a52d0cf82 (patch)
tree9b0ca7a5ddabe5423a215b7324012a612123f91b /doc/README.android
parent5f0c969485577c8fbe35b54505e37bace0516a84 (diff)
downloadminetest-18a8fbf465b47c4780d63f34c960af7a52d0cf82.tar.gz
minetest-18a8fbf465b47c4780d63f34c960af7a52d0cf82.tar.bz2
minetest-18a8fbf465b47c4780d63f34c960af7a52d0cf82.zip
Software inventorycube (#7651)
Fixes missing/upside-down images on Android.
Diffstat (limited to 'doc/README.android')
-rw-r--r--doc/README.android2
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/README.android b/doc/README.android
index 0b17647c0..7ea96e54f 100644
--- a/doc/README.android
+++ b/doc/README.android
@@ -39,8 +39,6 @@ file can usually be found at /mnt/sdcard/Minetest.
* gui_scaling: this is a user-specified scaling factor for the GUI- In case
main menu is too big or small on your device, try changing this
value.
-* inventory_image_hack: if your inventory items are messed up, try setting
- this to true
Known issues
------------
kwc">typedef LUAI_MEM l_mem; /* chars used as small naturals (so that `char' is reserved for characters) */ typedef unsigned char lu_byte; #define MAX_SIZET ((size_t)(~(size_t)0)-2) #define MAX_LUMEM ((lu_mem)(~(lu_mem)0)-2) #define MAX_INT (INT_MAX-2) /* maximum value of an int (-2 for safety) */ /* ** conversion of pointer to integer ** this is for hashing only; there is no problem if the integer ** cannot hold the whole pointer value */ #define IntPoint(p) ((unsigned int)(lu_mem)(p)) /* type to ensure maximum alignment */ typedef LUAI_USER_ALIGNMENT_T L_Umaxalign; /* result of a `usual argument conversion' over lua_Number */ typedef LUAI_UACNUMBER l_uacNumber; /* internal assertions for in-house debugging */ #ifdef lua_assert #define check_exp(c,e) (lua_assert(c), (e)) #define api_check(l,e) lua_assert(e) #else #define lua_assert(c) ((void)0) #define check_exp(c,e) (e) #define api_check luai_apicheck #endif #ifndef UNUSED #define UNUSED(x) ((void)(x)) /* to avoid warnings */ #endif #ifndef cast #define cast(t, exp) ((t)(exp)) #endif #define cast_byte(i) cast(lu_byte, (i)) #define cast_num(i) cast(lua_Number, (i)) #define cast_int(i) cast(int, (i)) /* ** type for virtual-machine instructions ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h) */ typedef lu_int32 Instruction; /* maximum stack for a Lua function */ #define MAXSTACK 250 /* minimum size for the string table (must be power of 2) */ #ifndef MINSTRTABSIZE #define MINSTRTABSIZE 32 #endif /* minimum size for string buffer */ #ifndef LUA_MINBUFFER #define LUA_MINBUFFER 32 #endif #ifndef lua_lock