/* * Copyright 2016 - 2023 Gary Talent (gary@drinkingtea.net). All rights reserved. */ #pragma once #if __has_include() #endif #include namespace turbine::config { constexpr auto ImGuiEnabled = #if __has_include() true; #else false; #endif constexpr auto GbaEventLoopTimerBased = false; constexpr auto GbaTimerBits = 32; constexpr auto GlFpsPrint = false; }