Assign icons, Remove unused option, Clear up description
This commit is contained in:
parent
0915a12d72
commit
efd7183985
|
@ -27,7 +27,7 @@
|
|||
<string name="select_render">PVR Rendering (does nothing for now)</string>
|
||||
<string name="select_force_gpu">Force v6 GPU Config</string>
|
||||
<string name="default_disk">Set Default Disk</string>
|
||||
<string name="show_profiling_tools">Show debug profiling tools</string>
|
||||
<string name="show_profiling_tools">Show BIOS Debug Tools</string>
|
||||
|
||||
<string name="games_listing">Available Dreamcast Games</string>
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ public class GL2JNIActivity extends Activity {
|
|||
|
||||
if(prefs.getBoolean("debug_profling_tools", false)){
|
||||
|
||||
hlay.addView(addbut(R.drawable.config, new OnClickListener() {
|
||||
hlay.addView(addbut(R.drawable.clear_cache, new OnClickListener() {
|
||||
public void onClick(View v) {
|
||||
JNIdc.send(0, 0); //Killing texture cache
|
||||
popUp.dismiss();
|
||||
|
@ -114,14 +114,14 @@ public class GL2JNIActivity extends Activity {
|
|||
}
|
||||
}), params);
|
||||
|
||||
hlay.addView(addbut(R.drawable.disk_unknown, new OnClickListener() {
|
||||
public void onClick(View v) {
|
||||
JNIdc.send(0, 1); //settings.pvr.ta_skip
|
||||
popUp.dismiss();
|
||||
}
|
||||
}), params);
|
||||
// hlay.addView(addbut(R.drawable.disk_unknown, new OnClickListener() {
|
||||
// public void onClick(View v) {
|
||||
// JNIdc.send(0, 1); //settings.pvr.ta_skip
|
||||
// popUp.dismiss();
|
||||
// }
|
||||
// }), params);
|
||||
|
||||
hlay.addView(addbut(R.drawable.profiler, new OnClickListener() {
|
||||
hlay.addView(addbut(R.drawable.print_stats, new OnClickListener() {
|
||||
public void onClick(View v) {
|
||||
JNIdc.send(0, 2);
|
||||
popUp.dismiss(); //print_stats=true;
|
||||
|
|
Loading…
Reference in New Issue