Skip to content

Commit

Permalink
Add missing filter flags for the outline filter (#206)
Browse files Browse the repository at this point in the history
Fixes #205.

Tried to fix the issue I found last night in the same way that #165 
added other filter flags, but that PR seemed to have forgotten to add 
the two outline flags.

I tested this locally and the error doesn't come up now so it does work.
  • Loading branch information
Neerti authored Aug 15, 2020
1 parent ac03775 commit 235ae71
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/dreammaker/builtins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,10 @@ pub fn register_builtins(tree: &mut ObjectTree) -> Result<(), DMError> {
var/const/WAVE_SIDEWAYS = int!(1);
var/const/WAVE_BOUNDED = int!(2);

// outline filter
var/const/OUTLINE_SHARP = int!(1);
var/const/OUTLINE_SQUARE = int!(2);

// global procs
proc/abs(A);
proc/addtext(Arg1, Arg2/*, ...*/);
Expand Down

0 comments on commit 235ae71

Please sign in to comment.