From aa690e36c698ff18209bdbe75e03d05779b51272 Mon Sep 17 00:00:00 2001 From: xengineering Date: Thu, 17 Mar 2022 09:54:26 +0100 Subject: Use pointer receiver for App.terminate() --- README.md | 4 ++-- app.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7b3ae3f..08b173d 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,13 @@ Done (most recent first): - [x] implement minimal viable product To do (most important first): +- [ ] add support for ASCII STL format - [ ] allow window resizing - [ ] implement controls to modify view -- [ ] add support for ASCII STL format - [ ] improve performance with GPU-based matrix-matrix-multiplication - [ ] create icon for stlscope -- [ ] release version 1.0.0 - [ ] add desktop support +- [ ] release version 1.0.0 ## Further Ressources 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() } -- cgit v1.2.3-70-g09d2