Alexander van Gessel
Alexander van Gessel
This issue is essentially why video encodings are a lot more complicated than "a series of images". As for whether wesnoth can clean its memory, most of the images it...
Regarding an approach to this, it would be nice to have something like android's `onTrimMemory()`, but I suppose we'll have to write our own heuristics or hard-coded limits. An LRU...
@Vultraz You've been debugging this. Have you identified where the exception is thrown? You've also found a spot where you can catch it with no effect (probably due to the...
From what I see, the current system of * Always store a jailbreak exception on construct, if `jail_depth > 0` * Only clear a jailbreak exception on rethrow at `jail_depth...
The presence of the URL could be (for add-ons) contingent on a VCS webinterface base URL being provided in the PBL.
I can reproduce this on [master](https://github.com/wesnoth/wesnoth/commit/efca73da6da3e0ea361e5a5fd24554a18db49013) by opening the test scenario with `./wesnoth -t`. ### Backtrace ``` #0 0x00007ffff44d8c3c in ??? () at /lib64/libc.so.6 #1 0x00007ffff4483576 in raise () at...
Debug build: ``` (gdb) bt #0 0x00007ffff44d8c3c in ??? () at /lib64/libc.so.6 #1 0x00007ffff4483576 in raise () at /lib64/libc.so.6 #2 0x00007ffff446b8fa in abort () at /lib64/libc.so.6 #3 0x00007ffff446b81e in ???...
Soliton pointed me here, and it does appear to crash in the same place. It's probably something related to my environment, but not uniquely so.
The first thing it dies on (though not the only one) is `data/core/terrain-graphics/automatic-borders.cfg:112`, specifically, this: ``` [terrain_graphics] map=" , 2 , 1 2 , 4 , 3 , 5 ....
Here it is: `lexical_cast_default(std::string("."), -1)` returns `0`, at least on my machine, currently. ``` 627 const terrain_code tile = string_to_builder_number_(terrain); (gdb) print terrain $85 = ". " (gdb) step t_translation::string_to_builder_number_...