Epok Engine

PSYQO SDK

psyqo::FixedPointInternals::printInt

Function · 1 overload

Function

Performs `print int` as part of the fixed point module.

Belongs to
psyqo::FixedPointInternals
Header
fixed-point.hh
Overloads
1

Declaration

Declaration
void printInt(uint32_t value, const eastl::function<void(char)>&, unsigned scale)

Performs `print int` as part of the fixed point module.

ParameterTypeMeaning
valueuint32_tValue supplied for value. Keep referenced or pointed-to data valid for the complete call.
arg2const eastl::function<void (char)> &Value supplied for arg2. Keep referenced or pointed-to data valid for the complete call.
scaleunsigned intValue supplied for scale. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "psyqo/fixed-point.hh"

// Assume these named values have been initialized with valid data:
// uint32_t value
// const eastl::function<void (char)> & arg2
// unsigned int scale

psyqo::FixedPointInternals::printInt(value, arg2, scale);

Why use it

It provides direct, allocation-conscious access to the fixed point module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Pointer/reference arguments are borrowed unless the source contract says otherwise; keep them valid for the complete operation and never assume null is accepted.

Declared in https://github.com/pcsx-redux/nugget/blob/6186b131aacc5853a9161fb076ed34ffe504552d/psyqo/fixed-point.hh:40

Related members