summaryrefslogtreecommitdiff
path: root/src/types.h
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2012-05-09 22:42:22 +0200
committerBardur Arantsson <bardur@scientician.net>2012-05-09 22:52:19 +0200
commit656d66ee0e61c74f2730e2fffbea0304129d319b (patch)
tree7c6bf56ccd77f1afb73029df90f3df32e662e720 /src/types.h
parenta5b78e910344f4277c110941145e9412a03039ef (diff)
Lua: Remove Lua compat bits of timer_type
Diffstat (limited to 'src/types.h')
-rw-r--r--src/types.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/types.h b/src/types.h
index 8e06c4fd..6066e215 100644
--- a/src/types.h
+++ b/src/types.h
@@ -2490,8 +2490,7 @@ struct timer_type
s32b delay; /* Delay between activations */
s32b countdown; /* The current number of turns passed, when it reaches delay it fires */
- cptr callback; /* The lua function to call upon firing (if any) */
- void (*callback_c)(); /* The C function to call upon firing */
+ void (*callback)(); /* The C function to call upon firing */
};
/*