Small improvements to performance

This commit is contained in:
2026-06-25 21:30:44 -05:00
parent 3f35d56be4
commit a74f1568e9
7 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ errorret_t rpgInit(void) {
entityInit(npc, ENTITY_TYPE_NPC);
npc->position = (worldpos_t){ 3, 3, 0 };
npc->interact.type = ENTITY_INTERACT_PRINT;
stringCopy(npc->interact.data.message, "hello world", 32);
npc->interact.data.message = "hello world";
// All Good!
errorOk();