fullscreen switching and missing goatvr_set_fb_size call
[vrfileman] / src / main.cc
index d7dea97..04f8523 100644 (file)
@@ -55,6 +55,7 @@ int main(int argc, char **argv)
                }
 
                time_msec = app_get_msec();
+               time_sec = (double)time_msec / 1000.0;
                while(SDL_PollEvent(&ev)) {
                        process_event(&ev);
                        if(quit) goto break_evloop;
@@ -77,7 +78,7 @@ void app_resize(int x, int y)
        SDL_SetWindowSize(win, x, y);
 }
 
-void app_fullscreen(int fs)
+void app_fullscreen(bool fs)
 {
        SDL_SetWindowFullscreen(win, fs ? SDL_WINDOW_FULLSCREEN_DESKTOP : 0);
 }