Skip to content

Commit

Permalink
fix inputbox
Browse files Browse the repository at this point in the history
#8642 break #8607 ,now fixed
  • Loading branch information
xiushudongfang committed Mar 20, 2016
1 parent 8c9f3b9 commit 6189e31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/src/org/ppsspp/ppsspp/NativeActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ else if (Build.VERSION.SDK_INT < Build.VERSION_CODES.M)
.setPositiveButton(defaultAction, new DialogInterface.OnClickListener(){
@Override
public void onClick(DialogInterface d, int which) {
NativeApp.sendMessage("inputbox_completed", input.getText().toString());
NativeApp.sendMessage("inputbox_completed", title + ":" + input.getText().toString());
d.dismiss();
}
})
Expand Down

0 comments on commit 6189e31

Please sign in to comment.