chewbranca.com

Check-in [8bf3ecc3e8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Update game width and height
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | lisp-game-jam-2020
Files: files | file ages | folders
SHA3-256: 8bf3ecc3e814a813baed5ba977a4de1c2c5bdad0be8e7133bcab8955d9397cc5
User & Date: chewbranca 2020-04-11 22:24:46
Context
2020-04-11
22:25
Add log function check-in: 854a3dce1a user: chewbranca tags: lisp-game-jam-2020
22:24
Update game width and height check-in: 8bf3ecc3e8 user: chewbranca tags: lisp-game-jam-2020
2020-04-10
06:28
Convert readme.org to readme.md check-in: 81a2da5f37 user: chewbranca tags: lisp-game-jam-2020
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to src/fahombo/conf.lua.

1
2
3
4
5
6
7
8
9
10
love.conf = function(t)
   t.gammacorrect = true
   t.title, t.identity = "Fahombo", "fahombo"
   t.modules.joystick = false
   t.modules.physics = false
   t.window.width = 720
   t.window.height = 450
   t.window.vsync = false
   t.version = "11.3"
end





|
|



1
2
3
4
5
6
7
8
9
10
love.conf = function(t)
   t.gammacorrect = true
   t.title, t.identity = "Fahombo", "fahombo"
   t.modules.joystick = false
   t.modules.physics = false
   t.window.width = 1024
   t.window.height = 768
   t.window.vsync = false
   t.version = "11.3"
end