frameworks/base
Revision | db2e9b1116978d8254f196b1443343dc70a9ad36 (tree) |
---|---|
Zeit | 2020-03-18 19:55:14 |
Autor | Chih-Wei Huang <cwhuang@linu...> |
Commiter | Chih-Wei Huang |
Work around GMS crashing issue on 32-bit image
@@ -50,7 +50,7 @@ void GlesErrorCheckWrapper::assertNoErrors(const char* apicall) { | ||
50 | 50 | lastErrorName = "UNKNOWN"; |
51 | 51 | } |
52 | 52 | } |
53 | - LOG_ALWAYS_FATAL_IF(lastError != GL_NO_ERROR, | |
53 | + ALOGE_IF(lastError != GL_NO_ERROR, | |
54 | 54 | "%s error! %s (0x%x)", apicall, lastErrorName, lastError); |
55 | 55 | } |
56 | 56 |