Improve cubic to equirectangular conversion by only computing pixel locations once

Fix empty try-catch in MinecraftTicker
This commit is contained in:
johni0702
2015-06-17 10:20:44 +02:00
parent b463dcaa4d
commit ced45bb66f
2 changed files with 89 additions and 39 deletions

View File

@@ -246,7 +246,10 @@ public class MinecraftTicker {
if(mc != null)
mc.systemTime = Minecraft.getSystemTime();
} catch(Exception e) {
} catch (ReportedException e) {
throw e;
} catch (Exception e) {
e.printStackTrace();
}
}
}