more README, less logging

This commit is contained in:
2018-03-23 22:30:54 +01:00
parent 3f61993b1c
commit a414491b7b
3 changed files with 17 additions and 16 deletions

View File

@ -10,7 +10,7 @@ int main(int argc, char **argv) {
al_install_touch_input();
al_install_keyboard();
auto display = al_create_display(640, 480);
auto display = al_create_display(0, 0);
auto queue = al_create_event_queue();
auto redraw = true;
auto done = false;

View File

@ -3,17 +3,9 @@
package com.tksls.yellowrectangle;
import android.util.Log;
import org.liballeg.android.AllegroActivity;
public class DrawYellowRectangle extends AllegroActivity {
@Override
public void onStart() {
super.onStart();
Log.i("DrawYellowRectangle", "On Start .....");
}
static {
System.loadLibrary("allegro");
System.loadLibrary("allegro_primitives");