Skip to content

Commit

Permalink
number after one
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonx254 committed Sep 13, 2023
1 parent 5c887a9 commit f9ef3c6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ Ignored/
.gradle/
.idea/
android/key/
android/app/.cxx
android/local.properties
*.apk

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.7)

project(RetroEngine)

set(DECOMP_VERSION 1.3.1)
set(DECOMP_VERSION 1.3.2)

option(RETRO_FORCE_CASE_INSENSITIVE "Forces case insensivity." OFF)
option(RETRO_MOD_LOADER "Enables or disables the mod loader." ON)
Expand Down
2 changes: 1 addition & 1 deletion RSDKv3/RetroEngine.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ class RetroEngine
#ifdef DECOMP_VERSION
const char *gameVersion = DECOMP_VERSION;
#else
const char *gameVersion = "1.3.1";
const char *gameVersion = "1.3.2";
#endif
const char *gamePlatform;

Expand Down
4 changes: 2 additions & 2 deletions RSDKv3/Userdata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@ void WriteSettings()

#if RETRO_USING_SDL2
ini.SetComment("Keyboard 1", "IK1Comment",
"Keyboard Mappings for P1 (Based on: https://github.com/libsdl-org/sdlwiki/blob/main/SDLScancodeLookup.mediawiki)");
"Keyboard Mappings for P1 (Based on: https://github.com/libsdl-org/sdlwiki/blob/main/SDL2/SDLScancodeLookup.mediawiki)");
#endif
#if RETRO_USING_SDL1
ini.SetComment("Keyboard 1", "IK1Comment", "Keyboard Mappings for P1 (Based on: https://wiki.libsdl.org/SDLKeycodeLookup)");
Expand All @@ -829,7 +829,7 @@ void WriteSettings()

#if RETRO_USING_SDL2
ini.SetComment("Controller 1", "IC1Comment",
"Controller Mappings for P1 (Based on: https://github.com/libsdl-org/sdlwiki/blob/main/SDL_GameControllerButton.mediawiki)");
"Controller Mappings for P1 (Based on: https://github.com/libsdl-org/sdlwiki/blob/main/SDL2/SDL_GameControllerButton.mediawiki)");
ini.SetComment("Controller 1", "IC1Comment2", "Extra buttons can be mapped with the following IDs:");
ini.SetComment("Controller 1", "IC1Comment3", "CONTROLLER_BUTTON_ZL = 16");
ini.SetComment("Controller 1", "IC1Comment4", "CONTROLLER_BUTTON_ZR = 17");
Expand Down
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "1.3.1"
versionName "1.3.2"
if(project.hasProperty("RETRO_DISABLE_PLUS"))
autobuildFlag = true
externalNativeBuild {
Expand Down

0 comments on commit f9ef3c6

Please sign in to comment.