Replace reidc with reicast on logs

This commit is contained in:
Stefanos Kornilios Mitsis Poiitidis 2015-08-11 20:50:32 +02:00
parent 2b027e9897
commit 24b721c359
4 changed files with 9 additions and 9 deletions

View File

@ -40,7 +40,7 @@
#define EXPORT_XPLAY __attribute__ ((visibility("default")))
#define TAG "reidc"
#define TAG "reicast"
#define LOGW(...) ((void)__android_log_print( ANDROID_LOG_WARN, TAG, __VA_ARGS__ ))
#undef NUM_METHODS

View File

@ -135,11 +135,11 @@ public class GL2JNIActivity extends Activity {
} else {
descriptor = InputDevice.getDevice(joy).getName();
}
Log.d("reidc", "InputDevice ID: " + joy);
Log.d("reidc",
Log.d("reicast", "InputDevice ID: " + joy);
Log.d("reicast",
"InputDevice Name: "
+ InputDevice.getDevice(joy).getName());
Log.d("reidc", "InputDevice Descriptor: " + descriptor);
Log.d("reicast", "InputDevice Descriptor: " + descriptor);
pad.deviceId_deviceDescriptor.put(joy, descriptor);
}

View File

@ -137,8 +137,8 @@ public class GL2JNINative extends NativeActivity {
} else {
descriptor = InputDevice.getDevice(joy).getName();
}
Log.d("reidc", "InputDevice ID: " + joy);
Log.d("reidc",
Log.d("reicast", "InputDevice ID: " + joy);
Log.d("reicast",
"InputDevice Name: "
+ InputDevice.getDevice(joy).getName());
if (pad.isXperiaPlay) {
@ -151,7 +151,7 @@ public class GL2JNINative extends NativeActivity {
pad.keypadZeus[1] = joy;
}
}
Log.d("reidc", "InputDevice Descriptor: " + descriptor);
Log.d("reicast", "InputDevice Descriptor: " + descriptor);
pad.deviceId_deviceDescriptor.put(joy, descriptor);
}
@ -561,7 +561,7 @@ public class GL2JNINative extends NativeActivity {
int y) {
Integer playerNum = pad.playerNumX.get(device);
if (playerNum != null && playerNum != -1) {
Log.d("reidc", playerNum + " - " + device + ": " + source);
Log.d("reicast", playerNum + " - " + device + ": " + source);
// if (newEvent && source == Gamepad.Xperia_Touchpad) {
if (source == Gamepad.Xperia_Touchpad) {
if (action == MotionEvent.ACTION_UP) {

View File

@ -192,7 +192,7 @@ public class GenerateLogs extends AsyncTask<String, Integer, String> {
mLogcatProc = null;
reader = null;
mLogcatProc = Runtime.getRuntime().exec(
new String[] { "logcat", "-d", "reidc:V *:S" });
new String[] { "logcat", "-d", "reicast:V *:S" });
reader = new BufferedReader(new InputStreamReader(
mLogcatProc.getInputStream()));
log.append(separator);