diff options
Diffstat (limited to 'menu_dirselect.h')
-rw-r--r-- | menu_dirselect.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/menu_dirselect.h b/menu_dirselect.h index b8f7cbc..71af34a 100644 --- a/menu_dirselect.h +++ b/menu_dirselect.h @@ -36,7 +36,7 @@ class cDirExt : public cListObject { private: char name[MaxFileName]; public: - cDirExt(void){} + cDirExt(void){ name[0]=0; } bool Parse(const char *s) {strcpy(name,s); return true;} char* Name() {return name;} }; |