From 3c8bcba6b540f5cb84572994d9ec2426dd348a93 Mon Sep 17 00:00:00 2001 From: fusion32 Date: Thu, 5 Jun 2025 02:00:10 -0300 Subject: finish `magic.cc` --- src/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main.cc') diff --git a/src/main.cc b/src/main.cc index d3a0cbd..3925b04 100644 --- a/src/main.cc +++ b/src/main.cc @@ -541,8 +541,8 @@ int main(int argc, char **argv){ // once we identify all throw statements and how to roughly handle them. try{ LaunchGame(); - }catch(RESULT result){ - error("main: Nicht abgefangene Exception %d.\n", result); + }catch(RESULT r){ + error("main: Nicht abgefangene Exception %d.\n", r); }catch(const char *str){ error("main: Nicht abgefangene Exception \"%s\".\n", str); }catch(const std::exception &e){ -- cgit v1.2.3