Replace harmless single-line pair assigns by multi-line, need more newlines!

This commit is contained in:
mittorn
2024-02-27 05:01:13 +03:00
committed by Alibek Omarov
parent 93e5faa26b
commit 892c735c86
3 changed files with 4 additions and 4 deletions
+2 -1
View File
@@ -324,7 +324,8 @@ DECLARE_JNI_INTERFACE( void, onNativeResize, jint width, jint height )
if( !width || !height )
return;
jni.width=width, jni.height=height;
jni.width = width;
jni.height = height;
// alloc update event to change screen size
event = Android_AllocEvent();
+2 -1
View File
@@ -90,7 +90,8 @@ Resolution got from last resize event
*/
static void Android_GetScreenRes( int *width, int *height )
{
*width=jni.width, *height=jni.height;
*width = jni.width;
*height = jni.height;
}
/*