audio/ncmpc: remove unneeded patch that I missed and spotted by aja@

This commit is contained in:
lraab 2022-09-03 02:22:40 +00:00
parent 7b775a4fe2
commit fa68a0ba55
1 changed files with 0 additions and 14 deletions

View File

@ -1,14 +0,0 @@
Index: src/screen_init.cxx
--- src/screen_init.cxx.orig
+++ src/screen_init.cxx
@@ -49,8 +49,8 @@ ScreenManager::ScreenManager(EventLoop &event_loop) no
#ifdef ENABLE_COLORS
if (options.enable_colors) {
/* set background attributes */
- wbkgd(stdscr, COLOR_PAIR(Style::LIST));
- wbkgd(main_window.w, COLOR_PAIR(Style::LIST));
+ wbkgd(stdscr, COLOR_PAIR((int)Style::LIST));
+ wbkgd(main_window.w, COLOR_PAIR((int)Style::LIST));
}
#endif
}