diff --git a/base/vulkanexamplebase.h b/base/vulkanexamplebase.h index 5680fb74..cd157389 100644 --- a/base/vulkanexamplebase.h +++ b/base/vulkanexamplebase.h @@ -426,12 +426,10 @@ int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR, int) \ } #elif defined(VK_USE_PLATFORM_ANDROID_KHR) // Android entry point -// A note on app_dummy(): This is required as the compiler may otherwise remove the main entry point of the application #define VULKAN_EXAMPLE_MAIN() \ VulkanExample *vulkanExample; \ void android_main(android_app* state) \ { \ - app_dummy(); \ vulkanExample = new VulkanExample(); \ state->userData = vulkanExample; \ state->onAppCmd = VulkanExample::handleAppCommand; \