Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Fixed typo that was prevening the central body id to be matched in an…
Browse files Browse the repository at this point in the history
… old particle.dat file
  • Loading branch information
daminton committed Aug 19, 2021
1 parent b482943 commit 5835450
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symba/symba_io.f90
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ module subroutine symba_io_read_particle(system, param)
lmatch = .false.
read(LUN, err = 667, iomsg = errmsg, end = 333) id

if (idx == cb%id) then
if (id == cb%id) then
read(LUN, err = 667, iomsg = errmsg) cb%info
lmatch = .true.
else
Expand Down

0 comments on commit 5835450

Please sign in to comment.