File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ set(BUILD_DIR ${CMAKE_SOURCE_DIR}/build)
1212set (CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR} /bin" )
1313set (CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR} /bin" )
1414
15- project (vkhandybug VERSION "0.6.0 " )
15+ project (vkhandybug VERSION "0.6.2 " )
1616
1717configure_file ("${CMAKE_CURRENT_SOURCE_DIR} /frontend/configure.h.in" "${CMAKE_CURRENT_SOURCE_DIR} /frontend/configure.h" )
1818
Original file line number Diff line number Diff line change @@ -141,7 +141,7 @@ void Menu::render_popups()
141141 {
142142#ifdef _MSC_VER
143143 auto sep = std::wstring (&std::filesystem::path::preferred_separator);
144- Config::getInstance ().store ().last_rom_folder = ImGuiFileDialog::Instance ()->GetCurrentPath () + std::string (sep.begin (), sep.end ());
144+ Config::get_instance ().store ().last_rom_folder = ImGuiFileDialog::Instance ()->GetCurrentPath () + std::string (sep.begin (), sep.end ());
145145#else
146146 Config::get_instance ().store ().last_rom_folder = ImGuiFileDialog::Instance ()->GetCurrentPath () + std::filesystem::path::preferred_separator;
147147#endif
Original file line number Diff line number Diff line change 2626#include < iterator>
2727#include < future>
2828
29+ #ifndef MIN
30+ #define MIN (X, Y ) (((X) < (Y)) ? (X) : (Y))
31+ #endif
32+
2933enum LynxButtons
3034{
3135 LynxButtons_Up = 0 ,
You can’t perform that action at this time.
0 commit comments