Home
last modified time | relevance | path

Searched refs:talk_size (Results 1 – 3 of 3) sorted by relevance

/dports/games/spellcast/spellcast/
H A Dxtalk.c20 py->talk_size = 128;
21 py->talk_buf = (char *)malloc(sizeof(char) * py->talk_size);
76 if (size < py->talk_size)
79 while (size < py->talk_size)
80 py->talk_size *= 2;
82 py->talk_buf = (char *)realloc(py->talk_buf, sizeof(char) * py->talk_size);
H A Dxspell.h103 int talk_size; member
/dports/games/warmux/warmux-11.04/src/menu/
H A Dresults_menu.cpp262 int talk_size = tab_size.y/4; in ResultsMenu() local
263 msg_box = new TalkBox(Point2i(tab_size.x, talk_size), Font::FONT_SMALL, Font::FONT_BOLD); in ResultsMenu()
264 tab_size.y -= talk_size; in ResultsMenu()