Browse Source

Fixed bug where disabling keyboard would prevent any handlers from being created.

Bill Meltsner 15 years ago
parent
commit
22ab49d167
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/scripts/boot.lua

+ 1 - 1
src/scripts/boot.lua

@@ -241,7 +241,7 @@ function love.init()
 		end
 		end
 	end
 	end
 
 
-	if love.keyboard then
+	if love.event then
 		love.createhandlers()
 		love.createhandlers()
 	end
 	end