From 0b93abf527c246663351f518fea47e28cc4eabc7 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 3 Apr 2006 21:02:31 +0000 Subject: [PATCH 1/1] display bsod on exception --- lib/python/python.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/python/python.cpp b/lib/python/python.cpp index 4ca77ab2..b5ae4864 100644 --- a/lib/python/python.cpp +++ b/lib/python/python.cpp @@ -6,6 +6,7 @@ #include extern "C" void init_enigma(); +extern void bsodFatal(); DEFINE_REF(TestObj); @@ -129,6 +130,7 @@ int ePython::call(PyObject *pFunc, PyObject *pArgs) } else { PyErr_Print(); + bsodFatal(); } } return res; -- 2.30.2