MCPcopy Create free account
hub / github.com/ZDoom/Raze / SetValue

Method SetValue

source/common/menu/menu.cpp:1220–1231  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1218
1219
1220bool DMenuItemBase::SetValue(int i, int value)
1221{
1222 IFVIRTUAL(DMenuItemBase, SetValue)
1223 {
1224 VMValue params[] = { (DObject*)this, i, value };
1225 int retval;
1226 VMReturn ret(&retval);
1227 VMCall(func, params, countof(params), &ret, 1);
1228 return !!retval;
1229 }
1230 return false;
1231}
1232
1233bool DMenuItemBase::GetValue(int i, int *pvalue)
1234{

Callers 3

UpdateJoystickMenuFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected