Skip to content

Commit 39e6af5

Browse files
authored
corrects DMStandard default vars for findlasttext(ex) (#2088)
1 parent 6876593 commit 39e6af5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DMCompiler/DMStandard/_Standard.dm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ proc/file2text(File) as text|null
2020
proc/filter(type, ...)
2121
proc/findtext(Haystack, Needle, Start = 1, End = 0) as num
2222
proc/findtextEx(Haystack, Needle, Start = 1, End = 0) as num
23-
proc/findlasttext(Haystack, Needle, Start = 1, End = 0) as num
24-
proc/findlasttextEx(Haystack, Needle, Start = 1, End = 0) as num
23+
proc/findlasttext(Haystack, Needle, Start = 0, End = 1) as num
24+
proc/findlasttextEx(Haystack, Needle, Start = 0, End = 1) as num
2525
proc/flick(Icon, Object)
2626
proc/flist(Path) as /list
2727
proc/floor(A) as num

0 commit comments

Comments
 (0)