Fixed logic and removed the error supressing
diff --git a/system/core/Router.php b/system/core/Router.php
index bd363da..2c78efe 100644
--- a/system/core/Router.php
+++ b/system/core/Router.php
@@ -87,15 +87,15 @@
 		}
 
 		// Load the routes.php file.
-
-		if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT))
+		if (is_file(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT))
 		{
 			include(APPPATH.'config/'.ENVIRONMENT.'/routes'.EXT);
 		}
-		else
+		elseif (is_file(APPPATH.'config/routes'.EXT))
 		{
-			@include(APPPATH.'config/routes'.EXT);
+			include(APPPATH.'config/routes'.EXT);
 		}
+		
 		$this->routes = ( ! isset($route) OR ! is_array($route)) ? array() : $route;
 		unset($route);