Browse Source

Flipped the loading order of the graphics and window modules (first window, then graphics)

Alex Szpakowski 12 years ago
parent
commit
958a25e0af
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/scripts/boot.lua
  2. 1 1
      src/scripts/boot.lua.h

+ 1 - 1
src/scripts/boot.lua

@@ -333,8 +333,8 @@ function love.init()
 		"audio",
 		"image",
 		"font",
-		"graphics",
 		"window",
+		"graphics",
 		"math",
 		"physics",
 	} do

+ 1 - 1
src/scripts/boot.lua.h

@@ -563,8 +563,8 @@ const unsigned char boot_lua[] =
 	0x09, 0x09, 0x22, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x22, 0x2c, 0x0a,
 	0x09, 0x09, 0x22, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x22, 0x2c, 0x0a,
 	0x09, 0x09, 0x22, 0x66, 0x6f, 0x6e, 0x74, 0x22, 0x2c, 0x0a,
-	0x09, 0x09, 0x22, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x22, 0x2c, 0x0a,
 	0x09, 0x09, 0x22, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x22, 0x2c, 0x0a,
+	0x09, 0x09, 0x22, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x22, 0x2c, 0x0a,
 	0x09, 0x09, 0x22, 0x6d, 0x61, 0x74, 0x68, 0x22, 0x2c, 0x0a,
 	0x09, 0x09, 0x22, 0x70, 0x68, 0x79, 0x73, 0x69, 0x63, 0x73, 0x22, 0x2c, 0x0a,
 	0x09, 0x7d, 0x20, 0x64, 0x6f, 0x0a,