aboutsummaryrefslogtreecommitdiff
path: root/build/android/gradle
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2015-08-19 18:56:44 +0200
committerest31 <MTest31@outlook.com>2015-08-19 18:56:44 +0200
commitd565ce95395ec514d48b86910ae333bd5bfaa951 (patch)
treee1d66285d8b84c2d94011a5b43c7b28db1911dd6 /build/android/gradle
parent457d42c5997cc430231ed221f06d8f4bba2100e7 (diff)
downloadminetest-d565ce95395ec514d48b86910ae333bd5bfaa951.tar.gz
minetest-d565ce95395ec514d48b86910ae333bd5bfaa951.tar.bz2
minetest-d565ce95395ec514d48b86910ae333bd5bfaa951.zip
Client: disable mmdb modstore
The service isn't online, and on the long term, mmdb will likekly be replaced with other services from the modding community.
Diffstat (limited to 'build/android/gradle')
0 files changed, 0 insertions, 0 deletions
">size_t size; lua_State *L = z->L; const char *buff; lua_unlock(L); buff = z->reader(L, z->data, &size); lua_lock(L); if (buff == NULL || size == 0) return EOZ; z->n = size - 1; z->p = buff; return char2int(*(z->p++)); } int luaZ_lookahead (ZIO *z) { if (z->n == 0) { if (luaZ_fill(z) == EOZ) return EOZ; else { z->n++; /* luaZ_fill removed first byte; put back it */ z->p--; } } return char2int(*z->p); } void luaZ_init (lua_State *L, ZIO *z, lua_Reader reader, void *data) { z->L = L; z->reader = reader; z->data = data; z->n = 0; z->p = NULL; } /* --------------------------------------------------------------- read --- */ size_t luaZ_read (ZIO *z, void *b, size_t n) { while (n) { size_t m; if (luaZ_lookahead(z) == EOZ) return n; /* return number of missing bytes */