Skip to content

Commit

Permalink
Fixed SLASH$ constant evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
grymmjack committed Jun 8, 2024
1 parent 55094e5 commit 93a91fb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions _GJ_LIB_COMMON.BI
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ $IF FALSE = UNDEFINED AND TRUE = UNDEFINED THEN
$END IF

$IF SLASH = UNDEFINED THEN
$IF WIN AND SLASH THEN
CONST SLASH$ = "\"
$ELSE
$IF MAC THEN
CONST SLASH$ = "/"
$ELSEIF LINUX THEN
CONST SLASH$ = "/"
$ELSEIF WIN THEN
CONST SLASH$ = "\"
$END IF
$END IF

Expand Down

0 comments on commit 93a91fb

Please sign in to comment.