소스 검색

Fix the LOL_DEBUG environment variable handling logic.

pull/1/head
Sam Hocevar 4 년 전
부모
커밋
8ce1b6ec9c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      include/lol/private/base/msg.h

+ 2
- 2
include/lol/private/base/msg.h 파일 보기

@@ -66,8 +66,8 @@ private:
#if !_DEBUG
if (type == message_type::debug)
{
static bool const disable_debug = sys::getenv("LOL_DEBUG").size() > 0;
if (disable_debug)
static bool const enforce_debug = sys::getenv("LOL_DEBUG").size() > 0;
if (!enforce_debug)
return;
}
#endif


불러오는 중...
취소
저장