diff options
| author | iamcheeseman <[email protected]> | 2026-03-11 22:00:46 -0400 |
|---|---|---|
| committer | iamcheeseman <[email protected]> | 2026-03-11 22:01:10 -0400 |
| commit | 9e1afa5a96849aeb8eafce786c2411af7f45508c (patch) | |
| tree | 02757ee152796d29aaad8b1607235b47a8572361 | |
| parent | b941dc08244dfe62a6fb0f951c234b0eff736c74 (diff) | |
Scale up the default window size
I need to see
| -rw-r--r-- | conf.lua | 5 | ||||
| -rw-r--r-- | src/init.lua | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/conf.lua b/conf.lua new file mode 100644 index 0000000..db60d1a --- /dev/null +++ b/conf.lua @@ -0,0 +1,5 @@ +function love.conf(t) + t.window.title = "Gutshot" + t.window.width = 320 * 3 + t.window.height = 180 * 3 +end diff --git a/src/init.lua b/src/init.lua index c284b71..648fde3 100644 --- a/src/init.lua +++ b/src/init.lua @@ -41,8 +41,6 @@ function main_init() load_textures_from() - love.window.setMode(SCR_WIDTH, SCR_HEIGHT, {fullscreen = false}) - load_dir("src/objs") load_dir("src/scenes") end |
