Skip to content

Commit

Permalink
fix: 修正gcc版本更新后,config.h 中 uint值指定为NULL无法编译的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
yaocccc committed Jul 6, 2024
1 parent 9c51ab8 commit 0bfa2e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DEF/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ static const unsigned int alphas[][3] = { /* 透明度设置 ColFg,
[SchemeSelGlobal] = { OPAQUE, baralpha, borderalpha },
[SchemeNormTag] = { OPAQUE, baralpha, borderalpha },
[SchemeSelTag] = { OPAQUE, baralpha, borderalpha },
[SchemeBarEmpty] = { NULL, 0x11, NULL },
[SchemeStatusText] = { OPAQUE, 0x88, NULL },
[SchemeBarEmpty] = { 0, 0x11, 0 },
[SchemeStatusText] = { OPAQUE, 0x88, 0 },
};

/* 自定义脚本位置 */
Expand Down

0 comments on commit 0bfa2e2

Please sign in to comment.