aboutsummaryrefslogtreecommitdiff
path: root/main.F90
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2020-08-10 18:02:04 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2020-08-10 18:02:04 -0400
commit7b8f2ab32f66d8f3ce48a5e9685c05b25d31f2bb (patch)
tree64e548693c90b65da6ee400cf9476af4b8aa9c16 /main.F90
parent48fad229ae1f033e694a7eb663945a6a3f1f4cb2 (diff)
downloadLR-87-7b8f2ab32f66d8f3ce48a5e9685c05b25d31f2bb.tar.gz
LR-87-7b8f2ab32f66d8f3ce48a5e9685c05b25d31f2bb.zip
Fixed favorite loading that caused string filling and pointer crashes. Now calls win32 CreateDirectory on Windows. Fixed Fave button on Windows.
Diffstat (limited to 'main.F90')
-rw-r--r--main.F902
1 files changed, 1 insertions, 1 deletions
diff --git a/main.F90 b/main.F90
index 7236a2e..d06131b 100644
--- a/main.F90
+++ b/main.F90
@@ -313,7 +313,7 @@ contains
open(newunit=loadunit, file=filename, status='old', action='read', iostat=ios)
if(ios == 0) then
- faves = read_favorites(loadunit)
+ faves => read_favorites(loadunit)
close(loadunit)
else