Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3fecef7

Browse files
committed
Added initfl() call when USE_FL is define.
1 parent 8316325 commit 3fecef7

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Modules/config.c.in

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ extern void initamoeba();
9595
extern void initgl();
9696
#ifdef USE_FM
9797
extern void initfm();
98+
#ifdef USE_FL
99+
extern void initfl();
100+
#endif
98101
#endif
99102
#ifdef USE_PANEL
100103
extern void initpanel();
@@ -137,6 +140,9 @@ struct {
137140
{"gl", initgl},
138141
#ifdef USE_FM
139142
{"fm", initfm},
143+
#ifdef USE_FL
144+
{"fl", initfl},
145+
#endif
140146
#endif
141147
#ifdef USE_PANEL
142148
{"pnl", initpanel},

0 commit comments

Comments
 (0)