We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5533009 commit 374c9d4Copy full SHA for 374c9d4
main.go
@@ -31,7 +31,7 @@ func init() {
31
var frame = 0
32
33
func runLoop(vid *video.Video, m *menu.Menu) {
34
- currTime := time.Now()
+ var currTime time.Time
35
prevTime := time.Now()
36
for !vid.Window.ShouldClose() {
37
currTime = time.Now()
video/video.go
@@ -93,8 +93,8 @@ func (video *Video) Configure(fullscreen bool) {
93
width = vm.Width
94
height = vm.Height
95
} else {
96
- width = 320 * 3
97
- height = 180 * 3
+ width = 384 * 2
+ height = 240 * 2
98
}
99
100
var err error
0 commit comments