medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 2df53beb0f686f4654e1b1c450a5864f6c0ac797
parent a34d115d09e7819a89283d2851b83762632171f3
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Thu Jul 30 19:32:11 +0200

Remove unnecessary defines

Diffstat:
gl.cc | 7-------
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/gl.cc b/gl.cc @@ -6,13 +6,6 @@ static const int WIDTH = 640; static const int HEIGHT = 480; -static const int BITS_RED = 8; -static const int BITS_GREEN = 8; -static const int BITS_BLUE = 8; -static const int BITS_ALPHA = 8; -static const int BITS_DEPTH = 24; -static const int BITS_STENCIL = 8; - void error_handler( const int code, const char * const message ) { warnx( "GLFW error %d: %s", code, message ); }