Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 moon-lander (1:1.0-5) UNRELEASED; urgency=low
 .
   * ack NMU
   * Switch to dpkg-source 3.0 (quilt) format
   * split up patches and add DEP3 headers
   * bump debhelper compat -> 9
   * bump std-ver to 3.9.4, no changes
   * minimize d/rules using dh(1)
   * make lintian happy and remove reference to BSD common-license file
     since it's already fully included in the copyright file
   * fix short description to satisfy lintian
   * fix handling of LDFLAGS for relro hardening
   * Add desktop menu file, thanks Daniel Dickinson, closes: #478927.
Author: Joe Nahmias <jello@debian.org>
Bug-Debian: http://bugs.debian.org/478927

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>

--- moon-lander-1.0.orig/game_lib.c
+++ moon-lander-1.0/game_lib.c
@@ -361,12 +361,9 @@ void press_any_key(SDLKey quit_key){
 
     if (event.type == SDL_KEYDOWN) {
       quit = 1;
-
-      if (quit_key != NULL){
-	if (event.key.keysym.sym == quit_key){
-	  exit(0);
-	}
-      }	
+      if (event.key.keysym.sym == quit_key){
+  	exit(0);
+      }
     } 
 
   } /* end while */
