Skip to content

Commit

Permalink
Fix syntax error in previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
szapp committed May 9, 2024
1 parent c6dccda commit 83662dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _work/data/Scripts/Content/GFA/_intern/auxiliary.d
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ func int GFA_GetActiveSpellIsScroll(var C_Npc slf) {
* This function is used for compatibility and only used optionally in the configuration.
*/
func string GFA_GetSpellName(var int spellID) {
const spellFxInstanceNamesPtr = 0;
const int spellFxInstanceNamesPtr = 0;
if (!spellFxInstanceNamesPtr) {
var int symPtr; symbPtr = MEM_GetSymbol("SPELLFXINSTANCENAMES");
if (symbPtr) {
Expand All @@ -185,7 +185,7 @@ func string GFA_GetSpellName(var int spellID) {
* This function is used for compatibility.
*/
func string GFA_GetSpellAni(var int spellID) {
const spellFxAniLettersPtr = 0;
const int spellFxAniLettersPtr = 0;
if (!spellFxAniLettersPtr) {
var int symPtr; symbPtr = MEM_GetSymbol("SPELLFXANILETTERS");
if (symbPtr) {
Expand Down

0 comments on commit 83662dd

Please sign in to comment.