From 8dbd1ea3353ece4adad4c2b224c503db331e6bbe Mon Sep 17 00:00:00 2001 From: halx99 Date: Mon, 11 Oct 2021 23:26:25 +0800 Subject: [PATCH] Remvoe lua 64bit bytecode spec a. since we know how to compile compatible bytecode for both plainlua and LuaJIT --- tests/lua-tests/project/Classes/AppDelegate.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/lua-tests/project/Classes/AppDelegate.cpp b/tests/lua-tests/project/Classes/AppDelegate.cpp index 46cc9ed59e..5e294048da 100644 --- a/tests/lua-tests/project/Classes/AppDelegate.cpp +++ b/tests/lua-tests/project/Classes/AppDelegate.cpp @@ -69,9 +69,6 @@ bool AppDelegate::applicationDidFinishLaunching() } lua_pop(L, 1); -#if CC_64BITS - FileUtils::getInstance()->addSearchPath("src/64bit"); -#endif FileUtils::getInstance()->addSearchPath("src"); FileUtils::getInstance()->addSearchPath("res"); pEngine->executeScriptFile("controller.lua");