From 3e71aa97db13faf83886e59800eba08a39b14ed3 Mon Sep 17 00:00:00 2001
From: John Hodge <tpg@mutabah.net>
Date: Tue, 21 Jan 2014 18:14:54 +0800
Subject: [PATCH] Kernel/DrvUtil Video - Silence warning for 15/16-bit cursor

---
 KernelLand/Kernel/drvutil_video.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/KernelLand/Kernel/drvutil_video.c b/KernelLand/Kernel/drvutil_video.c
index c8b044e0..4343ab6f 100644
--- a/KernelLand/Kernel/drvutil_video.c
+++ b/KernelLand/Kernel/drvutil_video.c
@@ -480,7 +480,8 @@ void DrvUtil_Video_RenderCursor(tDrvUtil_Video_BufInfo *Buf)
 	{
 	case 15:
 	case 16:
-		Log_Warning("DrvUtil", "TODO: Support 15/16 bpp modes in cursor draw");
+		//Log_Warning("DrvUtil", "TODO: Support 15/16 bpp modes in cursor draw");
+		//Proc_PrintBacktrace();
 		break;
 	case 24:
 		LOG("24-bit render");
-- 
GitLab