Commit 0f15b563 authored by Sam Hocevar's avatar Sam Hocevar

* ./src/misc/modules.c: disabled module autohide until we find out why a

    reloaded module sometimes does not work properly.
parent 2bb1112c
......@@ -2,7 +2,7 @@
* modules.c : Built-in and plugin modules management functions
*****************************************************************************
* Copyright (C) 2001 VideoLAN
* $Id: modules.c,v 1.60 2002/05/18 14:03:13 gbazin Exp $
* $Id: modules.c,v 1.61 2002/05/22 17:19:46 sam Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Ethan C. Baldridge <BaldridgeE@cadmus.com>
......@@ -228,7 +228,9 @@ void module_ManageBank( void )
{
if( p_module->i_unused_delay < MODULE_HIDE_DELAY )
{
p_module->i_unused_delay++;
/* FIXME: sometimes a module that has been unloaded does not
* work properly when loaded again. Check what's wrong. */
//p_module->i_unused_delay++;
}
else
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment