X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/09eee478cd3085633d87ddc8a7997ff3d000102e..6a9812501258df26b7c487e50744b91abe8ebe39:/Handler.mm?ds=sidebyside diff --git a/Handler.mm b/Handler.mm index 38ef638..4e4ccfe 100644 --- a/Handler.mm +++ b/Handler.mm @@ -130,10 +130,11 @@ struct CYClient : } else { NSAutoreleasePool *ar = [[NSAutoreleasePool alloc] init]; - CYContext context(driver.pool_); + CYOptions options; + CYContext context(driver.pool_, options); driver.program_->Replace(context); std::ostringstream str; - CYOutput out(str); + CYOutput out(str, options); out << *driver.program_; std::string code(str.str()); CYExecute_ execute = {pool, code.c_str()};