unsigned char

This commit is contained in:
disinvite 2024-05-09 22:04:13 -04:00
parent 1f068c7555
commit 8b8072d2ff
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ ViewLODList* ViewLODListManager::Lookup(const ROIName& p_roiName) const
// FUNCTION: LEGO1 0x100a7680
// FUNCTION: BETA10 0x1017886b
char ViewLODListManager::Destroy(ViewLODList* lodList)
unsigned char ViewLODListManager::Destroy(ViewLODList* lodList)
{
ViewLODListMap::iterator iterator;
char deleted = FALSE;

View File

@ -92,7 +92,7 @@ class ViewLODListManager {
// returned LODList's refCount is increased, i.e. caller must call Release()
// when it no longer holds on to the list
ViewLODList* Lookup(const ROIName&) const;
char Destroy(ViewLODList* lodList);
unsigned char Destroy(ViewLODList* lodList);
#ifdef _DEBUG
void Dump(void (*pTracer)(const char*, ...)) const;