소스 검색

#2044 - changed order of destructors to avoid crash

Andrii Danylchenko 2 년 전
부모
커밋
fe9090ddfa
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib/gameState/CGameState.cpp

+ 1 - 1
lib/gameState/CGameState.cpp

@@ -394,8 +394,8 @@ CGameState::CGameState()
 
 CGameState::~CGameState()
 {
-	map.dellNull();
 	curB.dellNull();
+	map.dellNull();
 }
 
 void CGameState::preInit(Services * services)