summaryrefslogtreecommitdiff
path: root/app.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2022-03-17 09:54:26 +0100
committerxengineering <me@xengineering.eu>2022-03-17 09:54:26 +0100
commitaa690e36c698ff18209bdbe75e03d05779b51272 (patch)
tree8d8ab4f9494b6e0dd44dfe29e8ae6ccd81fc04db /app.go
parent1ab78fcdcfafc1b650bf8db6f4edd124e4435c79 (diff)
downloadstlscope-main.tar
stlscope-main.tar.zst
stlscope-main.zip
Use pointer receiver for App.terminate()HEADmain
Diffstat (limited to 'app.go')
-rw-r--r--app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.go b/app.go
index 458e9af..a528020 100644
--- a/app.go
+++ b/app.go
@@ -70,6 +70,6 @@ func (application *App) handle() {
}
// terminate closes the App.
-func (application App) terminate() {
+func (application *App) terminate() {
glfw.Terminate()
}