damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 1dabd88355dcf0e3176109e03ce5e3afabf99312
parent 4f336412447f0ad7bed8d5531d322f707c052cee
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 11 Aug 2023 07:47:15 -0700

nostrscript: reduce size of wasm page allocation

smaller phones don't like this

Diffstat:
Mdamus-c/wasm.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/damus-c/wasm.c b/damus-c/wasm.c @@ -7100,7 +7100,7 @@ int wasm_interp_init(struct wasm_interp *interp, struct module *module) return 0; } - memory_pages_size = 64 * 256 * WASM_PAGE_SIZE; /* 1 gb virt */ + memory_pages_size = 8 * WASM_PAGE_SIZE; memsize = stack_size +