Skip to content

Commit

Permalink
[Cloud]Generic cleanups
Browse files Browse the repository at this point in the history
  • Loading branch information
OFFTKP committed Dec 17, 2023
1 parent 53375b3 commit aa2b64c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- name: Get latest CMake and ninja
# Using 'latest' branch, the most recent CMake and ninja are installed.
uses: lukka/get-cmake@latest

- name: Build 🔧
run: |
mkdir build
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ cmake-build-*/
.idea/
.gradle
.google
tools/android_project/app/release
tools/android_project/app/release
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ else()
project(SkyEmu C CXX)
endif()


set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 11)
set(LINK_LIBS "")
Expand Down
1 change: 0 additions & 1 deletion src/ios_support.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ void se_ios_open_file_picker( int num_extensions, const char ** extensions);
void se_ios_get_safe_ui_padding(float *top, float* bottom,float* left, float *right);
void se_ios_set_documents_working_directory();
void se_ios_open_url(const char * url);
const char* se_ios_get_certificate_path();
#endif
3 changes: 3 additions & 0 deletions src/localization.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@

// Strings added in v4 requiring translation:
// - "Disabled in Hardcore Mode"
// - "Rewind"
// - "Slow"
// - "Fast Forward"

//#define SHOW_TRANSLATE_ME 1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public class EnhancedNativeActivity extends NativeActivity {
public View mRootView;
private Vector<Integer> keyboardEvents;
private boolean first_event;
private String certificatePath;

static {
System.loadLibrary("SkyEmu");
Expand Down

0 comments on commit aa2b64c

Please sign in to comment.