MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / pushUINT

Method pushUINT

Engine/source/console/stringStack.cpp:169–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169ConsoleValue *ConsoleValueStack::pushUINT(U32 value)
170{
171 if (mStackPos == ConsoleValueStack::MaxStackDepth) {
172 AssertFatal(false, "Console Value Stack is empty");
173 return NULL;
174 }
175
176 //Con::printf("[%i]CSTK pushUINT %i", mStackPos, value);
177
178 mStack[mStackPos++].setIntValue(value);
179 return &mStack[mStackPos-1];
180}
181
182ConsoleValue *ConsoleValueStack::pushFLT(float value)
183{

Callers 2

execMethod · 0.80
executeMethod · 0.80

Calls 1

setIntValueMethod · 0.45

Tested by

no test coverage detected