Placeholder for window sizes Prevent navigator event 0x0 to show as unknown (though it is unknown... it's not defined in navigator.h)
This commit is contained in:
parent
67354250fc
commit
80ef2bca8f
@ -579,6 +579,9 @@ void fgPlatformProcessSingleEvent ( void )
|
||||
seems less likely to work when the app comes to the foreground. Might be a bug */
|
||||
break;
|
||||
|
||||
case 0: //Doesn't exist in header, but shows up when keyboard shows and resizes
|
||||
break;
|
||||
|
||||
default:
|
||||
LOGW("fgPlatformProcessSingleEvent: unknown navigator event: 0x%X", SLOG2_FA_SIGNED(eventType));
|
||||
break;
|
||||
|
@ -80,12 +80,14 @@ void fgPlatformOpenWindow( SFG_Window* window, const char* title,
|
||||
|
||||
/* Could set size based on what is specified for window. Work on another time
|
||||
int size[2];
|
||||
size[0] = w;
|
||||
size[1] = h;
|
||||
if (screen_set_window_property_iv(sWindow, SCREEN_PROPERTY_BUFFER_SIZE, size)) {
|
||||
screen_destroy_window(sWindow);
|
||||
fgError("Could not set window buffer size");
|
||||
return;
|
||||
if(sizeUse) {
|
||||
size[0] = w;
|
||||
size[1] = h;
|
||||
if (screen_set_window_property_iv(sWindow, SCREEN_PROPERTY_BUFFER_SIZE, size)) {
|
||||
screen_destroy_window(sWindow);
|
||||
fgError("Could not set window buffer size");
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
|
||||
/* Create window buffers */
|
||||
|
Reference in New Issue
Block a user