Browse Source

Fix getOS;

bjorn 7 years ago
parent
commit
7f206972fa
2 changed files with 2 additions and 2 deletions
  1. 1 1
      api/init.lua
  2. 1 1
      api/lovr/getOS.lua

+ 1 - 1
api/init.lua

@@ -486,7 +486,7 @@ return {
                 {
                   name = "os",
                   type = "string",
-                  description = "Either \"windows\" or \"macOS\"."
+                  description = "Either \"Windows\", \"macOS\", or \"Web\"."
                 }
               }
             }

+ 1 - 1
api/lovr/getOS.lua

@@ -7,7 +7,7 @@ return {
     {
       name = 'os',
       type = 'string',
-      description = 'Either "windows" or "macOS".'
+      description = 'Either "Windows", "macOS", or "Web".'
     }
   }
 }