소스 검색

fixed: 大小写

gwang 5 년 전
부모
커밋
471b597c31
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Gameserver/Amfphp/config.php

+ 1 - 1
Gameserver/Amfphp/config.php

@@ -101,7 +101,7 @@ abstract class config {
     static public function Inst() {
         static $config = null;
         if (is_null($config)) {
-            $config = include __DIR__ . '/Configs/config_' . PLAT . '.php';
+            $config = include __DIR__ . '/configs/config_' . PLAT . '.php';
         }
         return $config;
     }