OverkillManatee / beginning-android-games

Automatically exported from code.google.com/p/beginning-android-games
0 stars 0 forks source link

Possible incorect method call in GLSurfaceViewTest.java #78

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
In the following block of code...

    public void onResume() {
        super.onPause();
        glView.onResume();
    }

... I think the call to super should be the .onResume method not the .onPause 
method.  I could be wrong but it doesn't seem logical.

Original issue reported on code.google.com by kmpu...@uncg.edu on 20 Feb 2014 at 2:19

Attachments:

GoogleCodeExporter commented 9 years ago
This is from Chapter 7 on OpenGL Es by the way.

Original comment by kmpu...@uncg.edu on 20 Feb 2014 at 2:20