From af09f994baf9d234c194e6697fd5b45f35314acc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 31 Mar 2019 22:38:58 +0200 Subject: [PATCH] WindowServer: Remove the old cursor character bitmaps. --- Servers/WindowServer/WSWindowManager.cpp | 40 ------------------------ 1 file changed, 40 deletions(-) diff --git a/Servers/WindowServer/WSWindowManager.cpp b/Servers/WindowServer/WSWindowManager.cpp index 5c13d7223c..3db3b59d68 100644 --- a/Servers/WindowServer/WSWindowManager.cpp +++ b/Servers/WindowServer/WSWindowManager.cpp @@ -116,46 +116,6 @@ WSWindowManager& WSWindowManager::the() return *s_the; } -static const char* cursor_bitmap_inner_ascii = { - " # " - " ## " - " ### " - " #### " - " ##### " - " ###### " - " ####### " - " ######## " - " ######### " - " ########## " - " ###### " - " ## ## " - " # ## " - " ## " - " ## " - " ## " - " " -}; - -static const char* cursor_bitmap_outer_ascii = { - "## " - "# # " - "# # " - "# # " - "# # " - "# # " - "# # " - "# # " - "# # " - "# # " - "# #### " - "# ## # " - "# # # # " - "## # # " - " # # " - " # # " - " ## " -}; - void WSWindowManager::flip_buffers() { swap(m_front_bitmap, m_back_bitmap);