Skip to content

Commit

Permalink
background element depth is now a double
Browse files Browse the repository at this point in the history
  • Loading branch information
TwilCynder committed Apr 4, 2024
1 parent 87b4026 commit f5a89b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gamefile manager/src/dataFileMaker.pb
Original file line number Diff line number Diff line change
Expand Up @@ -829,10 +829,10 @@ Procedure writeStageFile(datafile.l, sourceFileName.s)
value$ = GMB_StringField(line, i, " ")
If value$ = "" Or value$ = "x"
printLog(" - Profondeur : 0 (défaut)")
writeShort(datafile, 0)
writeDouble(datafile, 0)
Else
printLog(" - Profondeur : " + value$)
writeShort(datafile, Val(value$))
writeDouble(datafile, ValD(value$))
EndIf
EndIf

Expand Down

0 comments on commit f5a89b6

Please sign in to comment.