From e0abed88d5082735e2ee5b960a2e675810daac27 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 2 Aug 2006 17:30:12 +0000 Subject: [PATCH] flattened this structure out --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%4053 --- sourcepawn/include/sp_vm_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sourcepawn/include/sp_vm_types.h b/sourcepawn/include/sp_vm_types.h index 82212ab5..ee0663e8 100644 --- a/sourcepawn/include/sp_vm_types.h +++ b/sourcepawn/include/sp_vm_types.h @@ -73,8 +73,8 @@ typedef struct sp_plugin_s uint32_t memory; /* required memory */ uint16_t flags; /* code flags */ uint32_t allocflags; /* allocation flags */ - sp_plugin_infotab_t *info; /* base info table */ - sp_plugin_debug_t *debug; /* debug info table */ + sp_plugin_infotab_t info; /* base info table */ + sp_plugin_debug_t debug; /* debug info table */ } sp_plugin_t; struct sp_context_s;