Browse Source

Fix false;

bjorn 2 years ago
parent
commit
db2bbcef6d
2 changed files with 2 additions and 2 deletions
  1. 1 1
      api/init.lua
  2. 1 1
      api/lovr/graphics/getPass.lua

+ 1 - 1
api/init.lua

@@ -14641,7 +14641,7 @@ return {
                       name = "mipmap",
                       name = "mipmap",
                       type = "boolean",
                       type = "boolean",
                       description = "Whether mipmaps for the color and depth textures should be regenerated after the pass is finished.",
                       description = "Whether mipmaps for the color and depth textures should be regenerated after the pass is finished.",
-                      default = "'false'"
+                      default = "false"
                     }
                     }
                   }
                   }
                 }
                 }

+ 1 - 1
api/lovr/graphics/getPass.lua

@@ -86,7 +86,7 @@ return {
         {
         {
           name = 'mipmap',
           name = 'mipmap',
           type = 'boolean',
           type = 'boolean',
-          default = [['false']],
+          default = [[false]],
           description = [[
           description = [[
             Whether mipmaps for the color and depth textures should be regenerated after the pass is
             Whether mipmaps for the color and depth textures should be regenerated after the pass is
             finished.
             finished.