Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the Android build's configuration setting/getting #166

Merged
merged 1 commit into from Mar 15, 2014

Conversation

Sonicadvance1
Copy link
Contributor

Due to the removal of our char* IniFile setters/getters this broke Android build which relied on that.

Convert our C-strings to std::strings before using

@@ -314,7 +314,7 @@ JNIEXPORT jstring JNICALL Java_org_dolphinemu_dolphinemu_NativeLibrary_GetConfig
ini.Load(File::GetUserPath(D_CONFIG_IDX) + std::string(File));
std::string value;

ini.Get(Key, Value, &value, Default);
ini.Get(std::string(Key), std::string(Value), &value, std::string(Default));

This comment was marked as off-topic.

…droid build which relied on that.

Convert our C-strings to std::strings before using
delroth added a commit that referenced this pull request Mar 15, 2014
Fix the Android build's configuration setting/getting
@delroth delroth merged commit 927a97c into dolphin-emu:master Mar 15, 2014
Joern-P pushed a commit to Joern-P/dolphin that referenced this pull request Mar 16, 2023
* Add L/R Analog Input options for GCPads.

* Various input fixes.
- Add L3/R3 as alias for soft shoulder presses.
- Allow more range when analog triggers are used for GC Controllers.
- Enable GC Controller input in ports 5-8 in Wii mode.
- Fix sideways Wiimote input expressions.
- Fix tilt orientation in sideways wiimotes.
- Add tilt controls to Wiimote + Nunchuck.
- Alias ports 5-8 and 1-4 in Wii mode.

* Changes based on PR feedback:

- Disable port 1-4 and 5-8 aliasing for GC Controllers.
- Default to Wii mode in ports 1-4.

* PR Review Fixes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants