MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / activate

Method activate

src/SB/Game/zTextBox.cpp:285–304  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

283}
284
285void ztextbox::activate()
286{
287 if (flag.active)
288 {
289 return;
290 }
291
292 flag.active = true;
293 flag.visible = true;
294
295 prev = NULL;
296 next = head_active;
297
298 if (head_active)
299 {
300 head_active->prev = this;
301 }
302
303 head_active = this;
304}
305
306void ztextbox::deactivate()
307{

Callers 4

cb_dispatchFunction · 0.45
activateFunction · 0.45
refresh_promptsFunction · 0.45
showMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected