diff --git a/src/citra/CMakeLists.txt b/src/citra/CMakeLists.txt index 719d32181..e3c6e1c9e 100644 --- a/src/citra/CMakeLists.txt +++ b/src/citra/CMakeLists.txt @@ -19,7 +19,7 @@ include_directories(${SDL2_INCLUDE_DIR}) add_executable(citra ${SRCS} ${HEADERS}) target_link_libraries(citra core video_core audio_core common) -target_link_libraries(citra ${SDL2_LIBRARY} ${OPENGL_gl_LIBRARY} inih glad SDL_Pango) +target_link_libraries(citra ${SDL2_LIBRARY} ${OPENGL_gl_LIBRARY} inih glad) if (MSVC) target_link_libraries(citra getopt) endif() diff --git a/src/citra/config.cpp b/src/citra/config.cpp index 7f9658728..3856f12bf 100644 --- a/src/citra/config.cpp +++ b/src/citra/config.cpp @@ -12,8 +12,7 @@ #include "core/settings.h" Config::Config() { - // TODO: Don't hardcode the path; let the frontend decide where to put the - // config files. + // TODO: Don't hardcode the path; let the frontend decide where to put the config files. sdl2_config_loc = FileUtil::GetUserPath(D_CONFIG_IDX) + "sdl2-config.ini"; sdl2_config = std::make_unique(sdl2_config_loc);