From 9130a5aa67fdfb4df0e4f3dae94e5d1ad9d62737 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 14 Aug 2013 20:14:23 -0400 Subject: Remove reference to pixel-format* enum. --- 2d/texture.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '2d/texture.scm') diff --git a/2d/texture.scm b/2d/texture.scm index c2a3fa1..4702029 100644 --- a/2d/texture.scm +++ b/2d/texture.scm @@ -107,8 +107,8 @@ "Returns the OpenGL pixel format for a surface. RGB and RGBA formats are supported." (case (SDL:surface:depth surface) - ((24) (pixel-format* rgb)) - ((32) (pixel-format* rgba)) + ((24) (pixel-format rgb)) + ((32) (pixel-format rgba)) (else (throw 'unsupported-pixel-format (SDL:surface:depth surface))))) (define (surface->texture surface) -- cgit v1.2.3