From e27f3fd7c3f687fd7faab7187fd88b3cd73e920d Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 6 Feb 2011 15:14:42 +0900 Subject: [PATCH] Copy the method's params into the method symbol. --- tools/qfcc/source/method.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/qfcc/source/method.c b/tools/qfcc/source/method.c index 707ef375c..606ffc0f9 100644 --- a/tools/qfcc/source/method.c +++ b/tools/qfcc/source/method.c @@ -176,6 +176,7 @@ method_symbol (class_type_t *class_type, method_t *method) // str->size); sym = new_symbol_type (str->str, method->type); sym = function_symbol (sym, 0, 1);//FIXME put in far data and make static + sym->params = method->params; dstring_delete (str); return sym; }