summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/syslinux-4.03/com32/menu/background.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/syslinux-4.03/com32/menu/background.c')
-rw-r--r--contrib/syslinux/syslinux-4.03/com32/menu/background.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/contrib/syslinux/syslinux-4.03/com32/menu/background.c b/contrib/syslinux/syslinux-4.03/com32/menu/background.c
deleted file mode 100644
index 2be0ede..0000000
--- a/contrib/syslinux/syslinux-4.03/com32/menu/background.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/* ----------------------------------------------------------------------- *
- *
- * Copyright 2008 H. Peter Anvin - All Rights Reserved
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston MA 02110-1301, USA; either version 2 of the License, or
- * (at your option) any later version; incorporated herein by reference.
- *
- * ----------------------------------------------------------------------- */
-
-#include <consoles.h>
-#include <string.h>
-#include "menu.h"
-
-const char *current_background = NULL;
-
-void set_background(const char *new_background)
-{
- if (!current_background || !new_background ||
- strcmp(current_background, new_background)) {
- draw_background(new_background);
- current_background = new_background;
- }
-}