It looks like you're new here. If you want to get involved, click one of these buttons!
for(u32KeyCounter = 1, u32EventCounter = 1, orxString_Print(acID, "%s%ld", orxANIM_KZ_CONFIG_KEY_DATA, u32KeyCounter), orxString_Print(acEventID, "%s%ld", orxANIM_KZ_CONFIG_KEY_EVENT_NAME, u32KeyCounter);
orxConfig_HasValue(acID) != orxFALSE;
u32KeyCounter++, orxString_Print(acID, "%s%ld", orxANIM_KZ_CONFIG_KEY_DATA, u32KeyCounter), orxString_Print(acEventID, "%s%ld", orxANIM_KZ_CONFIG_KEY_EVENT_NAME, u32KeyCounter))
{
/* Has matching event? */
if(orxConfig_HasValue(acEventID) != orxFALSE)
{
/* Updates event counter */
u32EventCounter++;
}
}
/* Valid? */
if(u32EventCounter > 1)
{
(...)
}
Comments