Merge pull request #931 from CreativeAssembly/master
Added synchronous and C-Throw to VS projects.
This commit is contained in:
commit
66362c08c0
@ -1475,6 +1475,10 @@
|
||||
m.element("ExceptionHandling", condition, "false")
|
||||
elseif cfg.exceptionhandling == "SEH" then
|
||||
m.element("ExceptionHandling", condition, "Async")
|
||||
elseif cfg.exceptionhandling == "On" then
|
||||
m.element("ExceptionHandling", condition, "Sync")
|
||||
elseif cfg.exceptionhandling == "CThrow" then
|
||||
m.element("ExceptionHandling", condition, "SyncCThrow")
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -408,7 +408,8 @@
|
||||
"Default",
|
||||
"On",
|
||||
"Off",
|
||||
"SEH"
|
||||
"SEH",
|
||||
"CThrow",
|
||||
},
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user