Home
last modified time | relevance | path

Searched refs:hint_contents (Results 1 – 5 of 5) sorted by relevance

/dports/games/libretro-scummvm/scummvm-7b1e929/engines/glk/magnetic/
H A Demu.cpp152 hint_contents = new byte[MAX_HCONTENTS]; in ms_init()
154 if ((hints != 0) && (hint_contents != 0)) { in ms_init()
167 hints[i].content = hint_contents + conidx; in ms_init()
171 if (_hintFile.read(hint_contents + conidx, elsize) != elsize || _hintFile.eos()) in ms_init()
173 hint_contents[conidx + elsize - 1] = '\0'; in ms_init()
191 delete[] hint_contents; in ms_init()
193 hint_contents = nullptr; in ms_init()
254 delete[] hint_contents; in ms_freemem()
256 hint_contents = nullptr; in ms_freemem()
H A Dmagnetic.h66 byte *hint_contents; variable
/dports/games/scummvm/scummvm-2.5.1/engines/glk/magnetic/
H A Demu.cpp141 if (hint_contents) in ms_freemem()
142 free(hint_contents); in ms_freemem()
144 hint_contents = 0; in ms_freemem()
404 hint_contents = (type8 *)malloc(MAX_HCONTENTS); in init_gfx1()
405 if ((hints != 0) && (hint_contents != 0)) { in init_gfx1()
436 hints[i].content = (const char *)hint_contents + conidx; in init_gfx1()
444 hint_contents[conidx + elsize - 1] = '\0'; in init_gfx1()
446 out2("%s\n", hint_contents + conidx); in init_gfx1()
475 if (hint_contents) in init_gfx1()
476 free(hint_contents); in init_gfx1()
[all …]
H A Dmagnetic.cpp66 , hints(nullptr), hint_contents(nullptr), xpos(0), bufpos(0), log_on(0), in Magnetic()
H A Dmagnetic.h247 type8 *hint_contents; variable