svn path=/trunk/; revision=2301
DWORD dwModuleSize;
module_t* pModule;
char* ModuleNameString;
+ char * TempName;
/*
* Get current module data structure and module name string array
*/
pModule = &multiboot_modules[mb_info.mods_count];
+ do {
+ TempName = strchr( ModuleName, '\\' );
+ if( TempName )
+ ModuleName = TempName + 1;
+ } while( TempName );
+
ModuleNameString = multiboot_module_strings[mb_info.mods_count];
dwModuleSize = GetFileSize(ModuleImage);
}
return BootPartitionNumber;
-}
\ No newline at end of file
+}