diff --git a/CMakeLists.txt b/CMakeLists.txt index aaef90f4de..55c6a75e42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1671,6 +1671,8 @@ list(APPEND NativeAppSource UI/GamepadEmu.cpp UI/JoystickHistoryView.h UI/JoystickHistoryView.cpp + UI/LoadStateConfirmScreen.h + UI/LoadStateConfirmScreen.cpp UI/OnScreenDisplay.h UI/OnScreenDisplay.cpp UI/ControlMappingScreen.h diff --git a/UWP/UI_UWP/UI_UWP.vcxproj b/UWP/UI_UWP/UI_UWP.vcxproj index c19ec713be..6d1e967e2b 100644 --- a/UWP/UI_UWP/UI_UWP.vcxproj +++ b/UWP/UI_UWP/UI_UWP.vcxproj @@ -117,6 +117,7 @@ + @@ -174,6 +175,7 @@ + diff --git a/UWP/UI_UWP/UI_UWP.vcxproj.filters b/UWP/UI_UWP/UI_UWP.vcxproj.filters index 9b7d575aaa..53b77646ca 100644 --- a/UWP/UI_UWP/UI_UWP.vcxproj.filters +++ b/UWP/UI_UWP/UI_UWP.vcxproj.filters @@ -82,6 +82,9 @@ Screens + + Screens + Screens @@ -222,6 +225,9 @@ Screens + + Screens + Screens diff --git a/android/jni/Android.mk b/android/jni/Android.mk index aa3fbf51c1..7d39f6d392 100644 --- a/android/jni/Android.mk +++ b/android/jni/Android.mk @@ -950,6 +950,7 @@ LOCAL_SRC_FILES := \ $(SRC)/UI/SystemInfoScreen.cpp \ $(SRC)/UI/GamepadEmu.cpp \ $(SRC)/UI/JoystickHistoryView.cpp \ + $(SRC)/UI/LoadStateConfirmScreen.cpp \ $(SRC)/UI/GameInfoCache.cpp \ $(SRC)/UI/GameScreen.cpp \ $(SRC)/UI/UploadScreen.cpp \